comparison runtime/optwin.vim @ 4502:605c9ce57ec3

Updated runtime files, language files and translations.
author Bram Moolenaar <bram@vim.org>
date Tue, 21 May 2013 21:01:10 +0200
parents 97a5ce76cb7d
children c458ff35497e
comparison
equal deleted inserted replaced
4501:f4d9819ae32b 4502:605c9ce57ec3
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: 2013 Apr 05 4 " Last Change: 2013 May 20
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
256 call <SID>BinOptionG("ws", &ws) 256 call <SID>BinOptionG("ws", &ws)
257 call append("$", "incsearch\tshow match for partly typed search command") 257 call append("$", "incsearch\tshow match for partly typed search command")
258 call <SID>BinOptionG("is", &is) 258 call <SID>BinOptionG("is", &is)
259 call append("$", "magic\tchange the way backslashes are used in search patterns") 259 call append("$", "magic\tchange the way backslashes are used in search patterns")
260 call <SID>BinOptionG("magic", &magic) 260 call <SID>BinOptionG("magic", &magic)
261 call append("$", "regexpengine\tselect the default regexp engine used")
262 call <SID>OptionG("re", &re)
261 call append("$", "ignorecase\tignore case when using a search pattern") 263 call append("$", "ignorecase\tignore case when using a search pattern")
262 call <SID>BinOptionG("ic", &ic) 264 call <SID>BinOptionG("ic", &ic)
263 call append("$", "smartcase\toverride 'ignorecase' when pattern has upper case characters") 265 call append("$", "smartcase\toverride 'ignorecase' when pattern has upper case characters")
264 call <SID>BinOptionG("scs", &scs) 266 call <SID>BinOptionG("scs", &scs)
265 call append("$", "casemap\twhat method to use for changing case of letters") 267 call append("$", "casemap\twhat method to use for changing case of letters")