comparison runtime/optwin.vim @ 500:4772a5e3f9fa v7.0138

updated for version 7.0138
author vimboss
date Mon, 29 Aug 2005 22:25:38 +0000
parents e6fd82f42ba0
children 52e76e2b5b65
comparison
equal deleted inserted replaced
499:08012a1ff8d4 500:4772a5e3f9fa
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 11 4 " Last Change: 2005 Aug 29
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
401 call append("$", "spellcapcheck\tpattern to locate the end of a sentence") 401 call append("$", "spellcapcheck\tpattern to locate the end of a sentence")
402 call append("$", "\t(local to buffer)") 402 call append("$", "\t(local to buffer)")
403 call <SID>OptionL("spc") 403 call <SID>OptionL("spc")
404 call append("$", "spellsuggest\tmethods used to suggest corrections") 404 call append("$", "spellsuggest\tmethods used to suggest corrections")
405 call <SID>OptionG("sps", &sps) 405 call <SID>OptionG("sps", &sps)
406 call append("$", "mkspellmem\tamount of memory used by :mkspell before compressing")
407 call <SID>OptionG("msm", &msm)
406 endif 408 endif
407 409
408 410
409 call <SID>Header("multiple windows") 411 call <SID>Header("multiple windows")
410 call append("$", "laststatus\t0, 1 or 2; when to use a status line for the last window") 412 call append("$", "laststatus\t0, 1 or 2; when to use a status line for the last window")