summaryrefslogtreecommitdiffstats
path: root/runtime/optwin.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-11-10 22:09:11 +0100
committerBram Moolenaar <Bram@vim.org>2019-11-10 22:09:11 +0100
commit5ef1c6a4838a9629b793f3ae676f72a764171b00 (patch)
treef496545a97dd3ce594f7771891c4471700cdcbe9 /runtime/optwin.vim
parenta9aa86ff951b7908b615a61a0e216901b96bc0eb (diff)
Update runtime files
Diffstat (limited to 'runtime/optwin.vim')
-rw-r--r--runtime/optwin.vim6
1 files changed, 5 insertions, 1 deletions
diff --git a/runtime/optwin.vim b/runtime/optwin.vim
index 1eaf5efc97..700f78f5ab 100644
--- a/runtime/optwin.vim
+++ b/runtime/optwin.vim
@@ -1,7 +1,7 @@
" These commands create the option window.
"
" Maintainer: Bram Moolenaar <Bram@vim.org>
-" Last Change: 2019 Aug 20
+" Last Change: 2019 Nov 07
" If there already is an option window, jump to that one.
let buf = bufnr('option-window')
@@ -594,6 +594,10 @@ call <SID>OptionG("mouse", &mouse)
if has("gui")
call append("$", "mousefocus\tthe window with the mouse pointer becomes the current one")
call <SID>BinOptionG("mousef", &mousef)
+endif
+call append("$", "scrollfocus\tthe window with the mouse pointer scrolls with the mouse wheel")
+call <SID>BinOptionG("scf", &scf)
+if has("gui")
call append("$", "mousehide\thide the mouse pointer while typing")
call <SID>BinOptionG("mh", &mh)
endif