summaryrefslogtreecommitdiffstats
path: root/runtime/optwin.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2004-07-03 16:05:59 +0000
committerBram Moolenaar <Bram@vim.org>2004-07-03 16:05:59 +0000
commit592e0a2a1dbc542134c3fd88b4cdfa40e258f41b (patch)
tree40969df9b211be9ffd5523f7a9cc70e445cac973 /runtime/optwin.vim
parentcfbc5ee48e1b582f418f2d92ccbc4c4e84c803e1 (diff)
updated for version 7.0005
Diffstat (limited to 'runtime/optwin.vim')
-rw-r--r--runtime/optwin.vim7
1 files changed, 6 insertions, 1 deletions
diff --git a/runtime/optwin.vim b/runtime/optwin.vim
index bc70fcdf19..82e2c0ca8d 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: 2004 Jul 02
+" Last Change: 2004 Jul 03
" If there already is an option window, jump to that one.
if bufwinnr("option-window") > 0
@@ -359,6 +359,11 @@ call <SID>OptionG("lcs", &lcs)
call append("$", "number\tshow the line number for each line")
call append("$", "\t(local to window)")
call <SID>BinOptionL("nu")
+if has("linebreak")
+ call append("$", "numberwidth\tnumber of columns to use for the line number")
+ call append("$", "\t(local to window)")
+ call <SID>OptionL("nuw")
+endif
call <SID>Header("syntax and highlighting")