diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-03-12 21:50:18 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-03-12 21:50:18 +0000 |
commit | f71a3db47e928aaeea83c7bea011188d4898d249 (patch) | |
tree | 6ac9fc74bf8aa5c666d3eb6176a507da5a2aff52 /runtime | |
parent | e48ec1fa6bf564f210131ae14767af4f9419ec66 (diff) | |
download | vim-f71a3db47e928aaeea83c7bea011188d4898d249.zip |
updated for version 7.0222
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/optwin.vim | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/runtime/optwin.vim b/runtime/optwin.vim index 7dff51319..bebeeda1a 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 Mar 10 +" Last Change: 2006 Mar 12 " If there already is an option window, jump to that one. if bufwinnr("option-window") > 0 @@ -389,6 +389,12 @@ call <SID>OptionG("hl", &hl) call append("$", "hlsearch\thighlight all matches for the last used search pattern") call <SID>BinOptionG("hls", &hls) if has("syntax") + call append("$", "cursorcolumn\thighlight the screen column of the cursor") + call append("$", "\t(local to window)") + call <SID>BinOptionL("cuc") + call append("$", "cursorline\thighlight the screen line of the cursor") + call append("$", "\t(local to window)") + call <SID>BinOptionL("cul") call append("$", "spell\thighlight spelling mistakes") call append("$", "\t(local to window)") call <SID>BinOptionL("spell") |