diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-11-18 22:13:31 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-11-18 22:13:31 +0100 |
commit | c3719bd87beca9f72d2e9f11e36d561c2c3b57b0 (patch) | |
tree | 2ca909ca8d4a040e48cc484b2ae7512014d3eaf0 /src/proto/beval.pro | |
parent | c7d16dce2f180c8ebfc8105ad090b0ea2deedcdc (diff) | |
download | vim-c3719bd87beca9f72d2e9f11e36d561c2c3b57b0.zip |
patch 8.0.1312: balloon_show() only works in terminal when compiled with GUI
Problem: balloon_show() only works in terminal when compiled with the GUI.
Solution: Add FEAT_BEVAL_GUI and refactor to move common code out of the GUI
specific file.
Diffstat (limited to 'src/proto/beval.pro')
-rw-r--r-- | src/proto/beval.pro | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/proto/beval.pro b/src/proto/beval.pro new file mode 100644 index 000000000..716fbbe30 --- /dev/null +++ b/src/proto/beval.pro @@ -0,0 +1,6 @@ +/* beval.c */ +int get_beval_info(BalloonEval *beval, int getword, win_T **winp, linenr_T *lnump, char_u **textp, int *colp); +void post_balloon(BalloonEval *beval, char_u *mesg); +int can_use_beval(void); +void general_beval_cb(BalloonEval *beval, int state); +/* vim: set ft=c : */ |