summaryrefslogtreecommitdiffstats
path: root/src/testdir/gen_opt_test.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-07-01 22:06:07 +0200
committerBram Moolenaar <Bram@vim.org>2019-07-01 22:06:07 +0200
commitf8a071265535b8cc43e50a81f4d5049883ca50e4 (patch)
tree9a9853212002909960c51efbf60b42b3e708d50c /src/testdir/gen_opt_test.vim
parenta83e70000f106a1e1e0f86e8e362ec94c0df074c (diff)
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/gen_opt_test.vim')
-rw-r--r--src/testdir/gen_opt_test.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testdir/gen_opt_test.vim b/src/testdir/gen_opt_test.vim
index 74c725fb8b..22d7c8cdba 100644
--- a/src/testdir/gen_opt_test.vim
+++ b/src/testdir/gen_opt_test.vim
@@ -37,7 +37,7 @@ let test_values = {
\ 'imstyle': [[0, 1], [-1, 2, 999]],
\ 'lines': [[2, 24], [-1, 0, 1]],
\ 'linespace': [[0, 2, 4], ['']],
- \ 'numberwidth': [[1, 4, 8, 10], [-1, 0, 11]],
+ \ 'numberwidth': [[1, 4, 8, 10, 11, 20], [-1, 0, 21]],
\ 'regexpengine': [[0, 1, 2], [-1, 3, 999]],
\ 'report': [[0, 1, 2, 9999], [-1]],
\ 'scroll': [[0, 1, 2, 20], [-1]],