diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-07-02 20:20:09 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-07-02 20:20:09 +0200 |
commit | b2c0350c67736b0e054718fb5bf136147ee2261e (patch) | |
tree | a1b4a9651813cbb1d8cb1b2362760f5c54e47976 /runtime/optwin.vim | |
parent | 730cde924cea50977bdbfa5b977180bfaa188a27 (diff) | |
download | vim-git-b2c0350c67736b0e054718fb5bf136147ee2261e.tar.gz |
Make updating text for conceal mode simpler. A few compiler warning fixes.
Diffstat (limited to 'runtime/optwin.vim')
-rw-r--r-- | runtime/optwin.vim | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/runtime/optwin.vim b/runtime/optwin.vim index 12e934f2d..01654c56f 100644 --- a/runtime/optwin.vim +++ b/runtime/optwin.vim @@ -482,6 +482,11 @@ if has("scrollbind") call append("$", "scrollopt\t\"ver\", \"hor\" and/or \"jump\"; list of options for 'scrollbind'") call <SID>OptionG("sbo", &sbo) endif +if has("cursorbind") + call append("$", "cursorbind\tthis window's cursor moves together with other bound windows") + call append("$", "\t(local to window)") + call <SID>BinOptionL("crb") +endif call <SID>Header("multiple tab pages") |