Update runtime files

This commit is contained in:
Bram Moolenaar
2019-11-10 22:09:11 +01:00
parent a9aa86ff95
commit 5ef1c6a483
34 changed files with 1048 additions and 752 deletions

View File

@ -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