diff options
author | Bram Moolenaar <Bram@vim.org> | 2012-02-22 17:30:19 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2012-02-22 17:30:19 +0100 |
commit | db7207e6e51cf6677545e2f8e0aca427b3cf1956 (patch) | |
tree | 956dc0adb1d250813b9747027162703012bc4639 /runtime/optwin.vim | |
parent | 84a4c334e1b840d666d0a178b9e665b6041c6b78 (diff) | |
download | vim-git-db7207e6e51cf6677545e2f8e0aca427b3cf1956.tar.gz |
Updated runtime files.
Diffstat (limited to 'runtime/optwin.vim')
-rw-r--r-- | runtime/optwin.vim | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/runtime/optwin.vim b/runtime/optwin.vim index 4ff90bb22..dd36112d6 100644 --- a/runtime/optwin.vim +++ b/runtime/optwin.vim @@ -1,7 +1,7 @@ " These commands create the option window. " " Maintainer: Bram Moolenaar <Bram@vim.org> -" Last Change: 2011 Jun 13 +" Last Change: 2012 Feb 22 " If there already is an option window, jump to that one. if bufwinnr("option-window") > 0 @@ -1064,6 +1064,8 @@ call append("$", "shellquote\tcharacter(s) to enclose a shell command in") call <SID>OptionG("shq", &shq) call append("$", "shellxquote\tlike 'shellquote' but include the redirection") call <SID>OptionG("sxq", &sxq) +call append("$", "shellxescape\tcharacters to escape when 'shellxquote' is (") +call <SID>OptionG("sxe", &sxe) call append("$", "shellcmdflag\targument for 'shell' to execute a command") call <SID>OptionG("shcf", &shcf) call append("$", "shellredir\tused to redirect command output to a file") |