summaryrefslogtreecommitdiff
path: root/src/testdir/test_gui.vim
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-06-06 15:40:08 +0200
committerBram Moolenaar <Bram@vim.org>2019-06-06 15:40:08 +0200
commitf6d50f1da8ed22cd6ff37ade965684dd1fa67a2c (patch)
tree05c85d84666b409b06413c5d9f6e01ec7a084dac /src/testdir/test_gui.vim
parent12e71eb8a89bdfe1def5854fd7478e8899801b44 (diff)
downloadvim-git-f6d50f1da8ed22cd6ff37ade965684dd1fa67a2c.tar.gz
patch 8.1.1482: no test for wincol() depending on the 'number' optionv8.1.1482
Problem: No test for wincol() depending on the 'number' option. Solution: Add a couple of tests. (Christian Brabandt, closes #4500)
Diffstat (limited to 'src/testdir/test_gui.vim')
-rw-r--r--src/testdir/test_gui.vim10
1 files changed, 10 insertions, 0 deletions
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&