aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/options.lua
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-09-04 21:44:31 +0800
committerGitHub <noreply@github.com>2022-09-04 21:44:31 +0800
commit5ac6654334785427886d5698fdbe79577c8c6efe (patch)
treeb5e4773025a714f20391e800232ec35929794133 /src/nvim/options.lua
parent900a7741821ff8dfb0634290a343e501955e9a1a (diff)
parent82d128405aaeb619a0c04353449f5717da126249 (diff)
downloadrneovim-5ac6654334785427886d5698fdbe79577c8c6efe.tar.gz
rneovim-5ac6654334785427886d5698fdbe79577c8c6efe.tar.bz2
rneovim-5ac6654334785427886d5698fdbe79577c8c6efe.zip
Merge pull request #19481 from zeertzjq/vim-8.2.4674
Add 'mousemoveevent' as a UI option
Diffstat (limited to 'src/nvim/options.lua')
-rw-r--r--src/nvim/options.lua8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua
index 2f941f5d0c..717ca6747b 100644
--- a/src/nvim/options.lua
+++ b/src/nvim/options.lua
@@ -1622,6 +1622,14 @@ return {
defaults={if_true="popup_setpos"}
},
{
+ full_name='mousemoveevent', abbreviation='mousemev',
+ short_desc=N_("deliver mouse move events to input queue"),
+ type='bool', scope={'global'},
+ redraw={'ui_option'},
+ varname='p_mousemev',
+ defaults={if_true=false}
+ },
+ {
full_name='mousescroll',
short_desc=N_("amount to scroll by when scrolling with a mouse"),
type='string', list='comma', scope={'global'},