diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-07-11 22:29:03 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-07-11 22:29:03 +0000 |
commit | 9ff7011bcba731fc32e0cf6de8f4b037c0fcc3ec (patch) | |
tree | f5b91aecaf4d0e4fc52ee39cc398659b2c00203e /runtime/optwin.vim | |
parent | d8e9bb209065d150b8a3d9b7ceee1d3ae6c94329 (diff) | |
download | vim-9ff7011bcba731fc32e0cf6de8f4b037c0fcc3ec.zip |
updated for version 7.0107
Diffstat (limited to 'runtime/optwin.vim')
-rw-r--r-- | runtime/optwin.vim | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/runtime/optwin.vim b/runtime/optwin.vim index d4c6a8c5b..2446b9bd3 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: 2005 Jul 06 +" Last Change: 2005 Jul 11 " If there already is an option window, jump to that one. if bufwinnr("option-window") > 0 @@ -380,6 +380,9 @@ if has("syntax") call append("$", "syntax\tname of syntax highlighting used") call append("$", "\t(local to buffer)") call <SID>OptionL("syn") + call append("$", "synmaxcol\tmaximum column to look for syntax items") + call append("$", "\t(local to buffer)") + call <SID>OptionL("smc") endif call append("$", "highlight\twhich highlighting to use for various occasions") call <SID>OptionG("hl", &hl) |