diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2015-01-03 16:06:25 -0500 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2015-01-03 16:06:25 -0500 |
commit | 10ff6ee0d7efedc4e3812b39dc8327b8aeef57a7 (patch) | |
tree | dfca4f5324e3e1eae8a117a915e924c314cca482 /src/nvim/globals.h | |
parent | a0bcd7d5f5ffcfbac1a4f57cf4e1e0efe1d1bed6 (diff) | |
parent | f3b06ba6d12b19d979c32f1903ec6ebb2041a10c (diff) | |
download | rneovim-10ff6ee0d7efedc4e3812b39dc8327b8aeef57a7.tar.gz rneovim-10ff6ee0d7efedc4e3812b39dc8327b8aeef57a7.tar.bz2 rneovim-10ff6ee0d7efedc4e3812b39dc8327b8aeef57a7.zip |
Merge pull request #1762 from steveno/patch-1
Remove unneeded global WantQueryMouse
Diffstat (limited to 'src/nvim/globals.h')
-rw-r--r-- | src/nvim/globals.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/nvim/globals.h b/src/nvim/globals.h index f53a780efe..11a7e9ecac 100644 --- a/src/nvim/globals.h +++ b/src/nvim/globals.h @@ -497,14 +497,6 @@ EXTERN bool mouse_past_bottom INIT(= false); /* mouse below last line */ EXTERN bool mouse_past_eol INIT(= false); /* mouse right of line */ EXTERN int mouse_dragging INIT(= 0); /* extending Visual area with mouse dragging */ -/* - * When the DEC mouse has been pressed but not yet released we enable - * automatic querys for the mouse position. - */ -EXTERN int WantQueryMouse INIT(= FALSE); - - - /* Value set from 'diffopt'. */ EXTERN int diff_context INIT(= 6); /* context for folds */ |