diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-11-18 18:52:04 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-11-18 18:52:04 +0100 |
commit | 51b0f3701ecb440aa72ab6017c1df6940c0e0f6f (patch) | |
tree | 9cfd3546d8e52be2b1425dcc65095f8e650eadde /src/feature.h | |
parent | 234d16286a2733adedef56784c17415ae169b9ad (diff) | |
download | vim-git-51b0f3701ecb440aa72ab6017c1df6940c0e0f6f.tar.gz |
patch 8.0.1309: cannot use 'balloonexpr' in a terminalv8.0.1309
Problem: Cannot use 'balloonexpr' in a terminal.
Solution: Add 'balloonevalterm' and add code to handle mouse movements in a
terminal. Initial implementation for Unix with GUI.
Diffstat (limited to 'src/feature.h')
-rw-r--r-- | src/feature.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/feature.h b/src/feature.h index a6a159997..f17a5c167 100644 --- a/src/feature.h +++ b/src/feature.h @@ -1328,6 +1328,13 @@ # define FEAT_BEVAL_TIP /* balloon eval used for toolbar tooltip */ #endif +/* + * +balloon_eval_term Allow balloon expression evaluation in the terminal. + */ +#if defined(FEAT_BEVAL) && defined(UNIX) && defined(FEAT_TIMERS) +# define FEAT_BEVALTERM +#endif + /* both Motif and Athena are X11 and share some code */ #if defined(FEAT_GUI_MOTIF) || defined(FEAT_GUI_ATHENA) # define FEAT_GUI_X11 |