comparison runtime/optwin.vim @ 393:7180554eefb1

updated for version 7.0104
author vimboss
date Wed, 06 Jul 2005 22:29:20 +0000
parents 997a094e44d2
children e6fd82f42ba0
comparison
equal deleted inserted replaced
392:66ee829a41d8 393:7180554eefb1
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 01 4 " Last Change: 2005 Jul 06
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
393 call append("$", "\t(local to buffer)") 393 call append("$", "\t(local to buffer)")
394 call <SID>OptionL("spl") 394 call <SID>OptionL("spl")
395 call append("$", "spellfile\tfile that \"zg\" adds good words to") 395 call append("$", "spellfile\tfile that \"zg\" adds good words to")
396 call append("$", "\t(local to buffer)") 396 call append("$", "\t(local to buffer)")
397 call <SID>OptionL("spf") 397 call <SID>OptionL("spf")
398 call append("$", "spellcapcheck\tpattern to locate the end of a sentence")
399 call append("$", "\t(local to buffer)")
400 call <SID>OptionL("spc")
398 call append("$", "spellsuggest\tmethods used to suggest corrections") 401 call append("$", "spellsuggest\tmethods used to suggest corrections")
399 call <SID>OptionG("sps", &sps) 402 call <SID>OptionG("sps", &sps)
400 endif 403 endif
401 404
402 405
987 call <SID>OptionG("sxq", &sxq) 990 call <SID>OptionG("sxq", &sxq)
988 call append("$", "shellcmdflag\targument for 'shell' to execute a command") 991 call append("$", "shellcmdflag\targument for 'shell' to execute a command")
989 call <SID>OptionG("shcf", &shcf) 992 call <SID>OptionG("shcf", &shcf)
990 call append("$", "shellredir\tused to redirect command output to a file") 993 call append("$", "shellredir\tused to redirect command output to a file")
991 call <SID>OptionG("srr", &srr) 994 call <SID>OptionG("srr", &srr)
995 call append("$", "shelltemp\tuse a temp file for shell commands instead of using a pipe")
996 call <SID>BinOptionG("stmp", &stmp)
992 call append("$", "equalprg\tprogram used for \"=\" command") 997 call append("$", "equalprg\tprogram used for \"=\" command")
993 call append("$", "\t(global or local to buffer)") 998 call append("$", "\t(global or local to buffer)")
994 call <SID>OptionG("ep", &ep) 999 call <SID>OptionG("ep", &ep)
995 call append("$", "formatprg\tprogram used to format lines with \"gq\" command") 1000 call append("$", "formatprg\tprogram used to format lines with \"gq\" command")
996 call <SID>OptionG("fp", &fp) 1001 call <SID>OptionG("fp", &fp)