From: Bram Moolenaar Date: Thu, 6 Jun 2019 13:40:08 +0000 (+0200) Subject: patch 8.1.1482: no test for wincol() depending on the 'number' option X-Git-Tag: v8.1.1482 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f6d50f1da8ed22cd6ff37ade965684dd1fa67a2c;p=vim patch 8.1.1482: no test for wincol() depending on the 'number' option Problem: No test for wincol() depending on the 'number' option. Solution: Add a couple of tests. (Christian Brabandt, closes #4500) --- diff --git a/src/testdir/test_gui.vim b/src/testdir/test_gui.vim index a372c1f9e..5a1763db8 100644 --- a/src/testdir/test_gui.vim +++ b/src/testdir/test_gui.vim @@ -694,12 +694,22 @@ func Test_scrollbars() call setline(11, repeat('x', 150)) redraw call assert_equal(1, wincol()) + set number + redraw + call assert_equal(5, wincol()) + set nonumber + redraw call assert_equal(1, col('.')) " scroll to character 11, cursor is moved call test_scrollbar('hor', 10, 0) redraw call assert_equal(1, wincol()) + set number + redraw + call assert_equal(5, wincol()) + set nonumber + redraw call assert_equal(11, col('.')) set guioptions& diff --git a/src/version.c b/src/version.c index 2fd64c3f4..2687eb943 100644 --- a/src/version.c +++ b/src/version.c @@ -767,6 +767,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1482, /**/ 1481, /**/