diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-07-24 11:32:56 +0800 |
---|---|---|
committer | zeertzjq <zeertzjq@outlook.com> | 2022-09-04 21:18:22 +0800 |
commit | a5fe7940c8b9436b78ae408eae8345266423f2c8 (patch) | |
tree | ed566fa73e650a8faaa60fbdf71011ec86d232e5 /src/nvim | |
parent | 00b49dd8dd638c5fe1b664273aea5c843d69f36d (diff) | |
download | rneovim-a5fe7940c8b9436b78ae408eae8345266423f2c8.tar.gz rneovim-a5fe7940c8b9436b78ae408eae8345266423f2c8.tar.bz2 rneovim-a5fe7940c8b9436b78ae408eae8345266423f2c8.zip |
feat(ui-ext): make 'mousemoveevent' a ui_option
Diffstat (limited to 'src/nvim')
-rw-r--r-- | src/nvim/options.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/options.lua b/src/nvim/options.lua index 9f540e6005..717ca6747b 100644 --- a/src/nvim/options.lua +++ b/src/nvim/options.lua @@ -1625,6 +1625,7 @@ return { 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} }, |