diff options
author | Bram Moolenaar <Bram@vim.org> | 2007-05-05 17:15:44 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2007-05-05 17:15:44 +0000 |
commit | d5ab34bd5ecc748d5502f149c476968e5ec2b7c9 (patch) | |
tree | e3a3ac967a8c78dfa6d7eb47af1823ebd358a8bb /runtime/optwin.vim | |
parent | 0630b8d96d12475cfa4457de9fc52e049323be94 (diff) | |
download | vim-git-d5ab34bd5ecc748d5502f149c476968e5ec2b7c9.tar.gz |
updated for version 7.1a
Diffstat (limited to 'runtime/optwin.vim')
-rw-r--r-- | runtime/optwin.vim | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/runtime/optwin.vim b/runtime/optwin.vim index da979d1e6..c0cbf2b6e 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: 2006 Apr 24 +" Last Change: 2006 Oct 10 " If there already is an option window, jump to that one. if bufwinnr("option-window") > 0 @@ -608,7 +608,7 @@ if has("gui") call append("$", " \tset bexpr=" . &bexpr) endif endif - if exists("&macatsui") + if exists("+macatsui") call append("$", "macatsui\tuse ATSUI text drawing; disable to avoid display problems") call <SID>OptionG("macatsui", &macatsui) endif @@ -1212,8 +1212,14 @@ call append("$", "gdefault\tuse the 'g' flag for \":substitute\"") call <SID>BinOptionG("gd", &gd) call append("$", "edcompatible\t'g' and 'c' flags of \":substitute\" toggle") call <SID>BinOptionG("ed", &ed) +if exists("+opendevice") + call append("$", "opendevice\tallow reading/writing devices") + call <SID>BinOptionG("odev", &odev) +endif +if exists("+maxfuncdepth") call append("$", "maxfuncdepth\tmaximum depth of function calls") call append("$", " \tset mfd=" . &mfd) +endif if has("mksession") call append("$", "sessionoptions\tlist of words that specifies what to put in a session file") call <SID>OptionG("ssop", &ssop) |