comparison runtime/optwin.vim @ 3371:8dcf3ea92b63

Updated runtime files.
author Bram Moolenaar <bram@vim.org>
date Wed, 22 Feb 2012 17:30:19 +0100
parents fd09a9c8468e
children 97a5ce76cb7d
comparison
equal deleted inserted replaced
3370:56d11b2b77eb 3371:8dcf3ea92b63
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: 2011 Jun 13 4 " Last Change: 2012 Feb 22
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
1062 endif 1062 endif
1063 call append("$", "shellquote\tcharacter(s) to enclose a shell command in") 1063 call append("$", "shellquote\tcharacter(s) to enclose a shell command in")
1064 call <SID>OptionG("shq", &shq) 1064 call <SID>OptionG("shq", &shq)
1065 call append("$", "shellxquote\tlike 'shellquote' but include the redirection") 1065 call append("$", "shellxquote\tlike 'shellquote' but include the redirection")
1066 call <SID>OptionG("sxq", &sxq) 1066 call <SID>OptionG("sxq", &sxq)
1067 call append("$", "shellxescape\tcharacters to escape when 'shellxquote' is (")
1068 call <SID>OptionG("sxe", &sxe)
1067 call append("$", "shellcmdflag\targument for 'shell' to execute a command") 1069 call append("$", "shellcmdflag\targument for 'shell' to execute a command")
1068 call <SID>OptionG("shcf", &shcf) 1070 call <SID>OptionG("shcf", &shcf)
1069 call append("$", "shellredir\tused to redirect command output to a file") 1071 call append("$", "shellredir\tused to redirect command output to a file")
1070 call <SID>OptionG("srr", &srr) 1072 call <SID>OptionG("srr", &srr)
1071 call append("$", "shelltemp\tuse a temp file for shell commands instead of using a pipe") 1073 call append("$", "shelltemp\tuse a temp file for shell commands instead of using a pipe")