From f8a071265535b8cc43e50a81f4d5049883ca50e4 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Mon, 1 Jul 2019 22:06:07 +0200 Subject: patch 8.1.1614: 'numberwidth' can only go up to 10 Problem: 'numberwidth' can only go up to 10. Solution: Allow up to 20. (Charlie Stanton, closes #4584) --- src/testdir/gen_opt_test.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/testdir/gen_opt_test.vim') diff --git a/src/testdir/gen_opt_test.vim b/src/testdir/gen_opt_test.vim index 74c725fb8..22d7c8cdb 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]], -- cgit v1.2.1