diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-04-24 19:47:27 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-04-24 19:47:27 +0000 |
commit | f9393ef5efde2f425fbd9e19363186f8c9103376 (patch) | |
tree | ec493a8fec62c31f9fe21993c4907bf1c1f290cd /runtime/optwin.vim | |
parent | 4a85b4156098a30daf5b15a7fb7587a1c7c99f94 (diff) | |
download | vim-git-f9393ef5efde2f425fbd9e19363186f8c9103376.tar.gz |
updated for version 7.0fv7.0f
Diffstat (limited to 'runtime/optwin.vim')
-rw-r--r-- | runtime/optwin.vim | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/runtime/optwin.vim b/runtime/optwin.vim index 3595e1598..da979d1e6 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 21 +" Last Change: 2006 Apr 24 " If there already is an option window, jump to that one. if bufwinnr("option-window") > 0 @@ -479,10 +479,12 @@ call append("$", "tabpagemax\tmaximum number of tab pages to open for -p and \"t call append("$", " \tset tpm=" . &tpm) call append("$", "tabline\tcustom tab pages line") call <SID>OptionG("tal", &tal) -call append("$", "guitablabel\tcustom tab page label for the GUI") -call <SID>OptionG("gtl", >l) -call append("$", "guitabtooltip\tcustom tab page tooltip for the GUI") -call <SID>OptionG("gtt", >t) +if has("gui") + call append("$", "guitablabel\tcustom tab page label for the GUI") + call <SID>OptionG("gtl", >l) + call append("$", "guitabtooltip\tcustom tab page tooltip for the GUI") + call <SID>OptionG("gtt", >t) +endif call <SID>Header("terminal") @@ -606,6 +608,10 @@ if has("gui") call append("$", " \tset bexpr=" . &bexpr) endif endif + if exists("&macatsui") + call append("$", "macatsui\tuse ATSUI text drawing; disable to avoid display problems") + call <SID>OptionG("macatsui", &macatsui) + endif endif if has("printer") |