comparison runtime/optwin.vim @ 409:e6fd82f42ba0

updated for version 7.0107
author vimboss
date Mon, 11 Jul 2005 22:29:03 +0000
parents 7180554eefb1
children 4772a5e3f9fa
comparison
equal deleted inserted replaced
408:06234af3a8b7 409:e6fd82f42ba0
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: 2005 Jul 06 4 " Last Change: 2005 Jul 11
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
378 endif 378 endif
379 if has("syntax") 379 if has("syntax")
380 call append("$", "syntax\tname of syntax highlighting used") 380 call append("$", "syntax\tname of syntax highlighting used")
381 call append("$", "\t(local to buffer)") 381 call append("$", "\t(local to buffer)")
382 call <SID>OptionL("syn") 382 call <SID>OptionL("syn")
383 call append("$", "synmaxcol\tmaximum column to look for syntax items")
384 call append("$", "\t(local to buffer)")
385 call <SID>OptionL("smc")
383 endif 386 endif
384 call append("$", "highlight\twhich highlighting to use for various occasions") 387 call append("$", "highlight\twhich highlighting to use for various occasions")
385 call <SID>OptionG("hl", &hl) 388 call <SID>OptionG("hl", &hl)
386 call append("$", "hlsearch\thighlight all matches for the last used search pattern") 389 call append("$", "hlsearch\thighlight all matches for the last used search pattern")
387 call <SID>BinOptionG("hls", &hls) 390 call <SID>BinOptionG("hls", &hls)