comparison runtime/optwin.vim @ 11914:4f7081eb1e26

Updated runtime files commit https://github.com/vim/vim/commit/f55e4c867f774d1f27973d06b07b97c0a4d6b968 Author: Bram Moolenaar <Bram@vim.org> Date: Tue Aug 1 20:44:53 2017 +0200 Updated runtime files
author Christian Brabandt <cb@256bit.org>
date Tue, 01 Aug 2017 21:00:06 +0200
parents 49c12c93abf3
children 84066f043ab9
comparison
equal deleted inserted replaced
11913:ea1271bbe63f 11914:4f7081eb1e26
1 " These commands create the option window. 1 " These commands create the option window.
2 " 2 "
3 " Maintainer: Bram Moolenaar <Bram@vim.org> 3 " Maintainer: Bram Moolenaar <Bram@vim.org>
4 " Last Change: 2017 Jul 15 4 " Last Change: 2017 Aug 01
5 5
6 " If there already is an option window, jump to that one. 6 " If there already is an option window, jump to that one.
7 if bufwinnr("option-window") > 0 7 if bufwinnr("option-window") > 0
8 let s:thiswin = winnr() 8 let s:thiswin = winnr()
9 while 1 9 while 1
1302 call <SID>OptionG("vdir", &vdir) 1302 call <SID>OptionG("vdir", &vdir)
1303 endif 1303 endif
1304 if has("viminfo") 1304 if has("viminfo")
1305 call append("$", "viminfo\tlist that specifies what to write in the viminfo file") 1305 call append("$", "viminfo\tlist that specifies what to write in the viminfo file")
1306 call <SID>OptionG("vi", &vi) 1306 call <SID>OptionG("vi", &vi)
1307 call append("$", "viminfofile\tfile name used for the viminfo file")
1308 call <SID>OptionG("vif", &vif)
1307 endif 1309 endif
1308 if has("quickfix") 1310 if has("quickfix")
1309 call append("$", "bufhidden\twhat happens with a buffer when it's no longer in a window") 1311 call append("$", "bufhidden\twhat happens with a buffer when it's no longer in a window")
1310 call append("$", "\t(local to buffer)") 1312 call append("$", "\t(local to buffer)")
1311 call <SID>OptionL("bh") 1313 call <SID>OptionL("bh")