diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-03-18 21:30:13 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-03-18 21:30:13 +0000 |
commit | be4d506b5fef4e5da5f24f036302a5723a2d2e9c (patch) | |
tree | aa9e284c0f286d2eec44cb3d1714ef13f55d152b /runtime/optwin.vim | |
parent | f0acfce534b93e20e3fb1c742dd48c49d70e9795 (diff) | |
download | vim-git-be4d506b5fef4e5da5f24f036302a5723a2d2e9c.tar.gz |
updated for version 7.0228
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 7cb905032..78df1defe 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 16 +" Last Change: 2006 Mar 18 " If there already is an option window, jump to that one. if bufwinnr("option-window") > 0 @@ -435,6 +435,9 @@ call append("$", "winfixheight\tkeep the height of the window") call append("$", "\t(local to window)") call <SID>BinOptionL("wfh") if has("vertsplit") +call append("$", "winfixwidth\tkeep the width of the window") +call append("$", "\t(local to window)") +call <SID>BinOptionL("wfw") call append("$", "winwidth\tminimal number of columns used for the current window") call append("$", " \tset wiw=" . &wiw) call append("$", "winminwidth\tminimal number of columns used for any window") |