comparison src/globals.h @ 12865:ebb4f6c93598 v8.0.1309

patch 8.0.1309: cannot use 'balloonexpr' in a terminal commit https://github.com/vim/vim/commit/51b0f3701ecb440aa72ab6017c1df6940c0e0f6f Author: Bram Moolenaar <Bram@vim.org> Date: Sat Nov 18 18:52:04 2017 +0100 patch 8.0.1309: cannot use 'balloonexpr' in a terminal 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.
author Christian Brabandt <cb@256bit.org>
date Sat, 18 Nov 2017 19:00:06 +0100
parents ffdf2e4b5d9a
children 1a450ce6980c
comparison
equal deleted inserted replaced
12864:e98532b79dba 12865:ebb4f6c93598
1229 EXTERN int no_hlsearch INIT(= FALSE); 1229 EXTERN int no_hlsearch INIT(= FALSE);
1230 #endif 1230 #endif
1231 1231
1232 #if defined(FEAT_BEVAL) && !defined(NO_X11_INCLUDES) 1232 #if defined(FEAT_BEVAL) && !defined(NO_X11_INCLUDES)
1233 EXTERN BalloonEval *balloonEval INIT(= NULL); 1233 EXTERN BalloonEval *balloonEval INIT(= NULL);
1234 EXTERN int balloonEvalForTerm INIT(= FALSE);
1234 # if defined(FEAT_NETBEANS_INTG) || defined(FEAT_SUN_WORKSHOP) 1235 # if defined(FEAT_NETBEANS_INTG) || defined(FEAT_SUN_WORKSHOP)
1235 EXTERN int bevalServers INIT(= 0); 1236 EXTERN int bevalServers INIT(= 0);
1236 # define BEVAL_NETBEANS 0x01 1237 # define BEVAL_NETBEANS 0x01
1237 # define BEVAL_WORKSHOP 0x02 1238 # define BEVAL_WORKSHOP 0x02
1238 # endif 1239 # endif
1646 #ifdef FEAT_TIMERS 1647 #ifdef FEAT_TIMERS
1647 EXTERN int did_add_timer INIT(= FALSE); 1648 EXTERN int did_add_timer INIT(= FALSE);
1648 EXTERN int timer_busy INIT(= 0); /* when timer is inside vgetc() then > 0 */ 1649 EXTERN int timer_busy INIT(= 0); /* when timer is inside vgetc() then > 0 */
1649 #endif 1650 #endif
1650 1651
1652 #ifdef FEAT_BEVALTERM
1653 EXTERN int bevalexpr_due_set INIT(= FALSE);
1654 EXTERN proftime_T bevalexpr_due;
1655 #endif
1656
1651 #ifdef FEAT_EVAL 1657 #ifdef FEAT_EVAL
1652 EXTERN time_T time_for_testing INIT(= 0); 1658 EXTERN time_T time_for_testing INIT(= 0);
1653 1659
1654 /* Abort conversion to string after a recursion error. */ 1660 /* Abort conversion to string after a recursion error. */
1655 EXTERN int did_echo_string_emsg INIT(= FALSE); 1661 EXTERN int did_echo_string_emsg INIT(= FALSE);