diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-07-01 22:06:07 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-07-01 22:06:07 +0200 |
commit | f8a071265535b8cc43e50a81f4d5049883ca50e4 (patch) | |
tree | 9a9853212002909960c51efbf60b42b3e708d50c /src/testdir/test_options.vim | |
parent | a83e70000f106a1e1e0f86e8e362ec94c0df074c (diff) | |
download | vim-git-f8a071265535b8cc43e50a81f4d5049883ca50e4.tar.gz |
patch 8.1.1614: 'numberwidth' can only go up to 10v8.1.1614
Problem: 'numberwidth' can only go up to 10.
Solution: Allow up to 20. (Charlie Stanton, closes #4584)
Diffstat (limited to 'src/testdir/test_options.vim')
-rw-r--r-- | src/testdir/test_options.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testdir/test_options.vim b/src/testdir/test_options.vim index e8eaef038..cbe00840c 100644 --- a/src/testdir/test_options.vim +++ b/src/testdir/test_options.vim @@ -245,7 +245,7 @@ func Test_set_errors() call assert_fails('set backupcopy=', 'E474:') call assert_fails('set regexpengine=3', 'E474:') call assert_fails('set history=10001', 'E474:') - call assert_fails('set numberwidth=11', 'E474:') + call assert_fails('set numberwidth=21', 'E474:') call assert_fails('set colorcolumn=-a') call assert_fails('set colorcolumn=a') call assert_fails('set colorcolumn=1,') |