summaryrefslogtreecommitdiff
path: root/src/option.h
diff options
context:
space:
mode:
authorErnie Rael <errael@raelity.com>2022-04-03 15:47:28 +0100
committerBram Moolenaar <Bram@vim.org>2022-04-03 15:47:28 +0100
commitc4cb544cd5beaa864b3893e4b8d0085393c7dbce (patch)
tree3e04f56d7b0a6d71d3bcb40c9107b031cf5bd949 /src/option.h
parent8ef6997e2d90808dec033373c96dda68843af12e (diff)
downloadvim-git-c4cb544cd5beaa864b3893e4b8d0085393c7dbce.tar.gz
patch 8.2.4674: cannot force getting MouseMove eventsv8.2.4674
Problem: Cannot force getting MouseMove events. Solution: Add the 'mousemoveevent' option with implementaiton for the GUI. (Ernie Rael, closes #10044)
Diffstat (limited to 'src/option.h')
-rw-r--r--src/option.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/option.h b/src/option.h
index e34467514..85f2fa816 100644
--- a/src/option.h
+++ b/src/option.h
@@ -760,6 +760,9 @@ EXTERN int p_mousef; // 'mousefocus'
EXTERN int p_mh; // 'mousehide'
#endif
EXTERN char_u *p_mousem; // 'mousemodel'
+#ifdef FEAT_GUI
+EXTERN int p_mousemev; // 'mousemoveevent'
+#endif
EXTERN long p_mouset; // 'mousetime'
EXTERN int p_more; // 'more'
#ifdef FEAT_MZSCHEME