changeset 16963:1fbb0a33b074 v8.1.1482

patch 8.1.1482: no test for wincol() depending on the 'number' option commit https://github.com/vim/vim/commit/f6d50f1da8ed22cd6ff37ade965684dd1fa67a2c Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jun 6 15:40:08 2019 +0200 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 https://github.com/vim/vim/issues/4500)
author Bram Moolenaar <Bram@vim.org>
date Thu, 06 Jun 2019 15:45:04 +0200
parents 70da6e496fc1
children 45ff4207d530
files src/testdir/test_gui.vim src/version.c
diffstat 2 files changed, 12 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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&
--- a/src/version.c
+++ b/src/version.c
@@ -768,6 +768,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    1482,
+/**/
     1481,
 /**/
     1480,