comparison src/testdir/test_gui.vim @ 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 060b58b492a5
children f38fcbf343ce
comparison
equal deleted inserted replaced
16962:70da6e496fc1 16963:1fbb0a33b074
692 692
693 set nowrap 693 set nowrap
694 call setline(11, repeat('x', 150)) 694 call setline(11, repeat('x', 150))
695 redraw 695 redraw
696 call assert_equal(1, wincol()) 696 call assert_equal(1, wincol())
697 set number
698 redraw
699 call assert_equal(5, wincol())
700 set nonumber
701 redraw
697 call assert_equal(1, col('.')) 702 call assert_equal(1, col('.'))
698 703
699 " scroll to character 11, cursor is moved 704 " scroll to character 11, cursor is moved
700 call test_scrollbar('hor', 10, 0) 705 call test_scrollbar('hor', 10, 0)
701 redraw 706 redraw
702 call assert_equal(1, wincol()) 707 call assert_equal(1, wincol())
708 set number
709 redraw
710 call assert_equal(5, wincol())
711 set nonumber
712 redraw
703 call assert_equal(11, col('.')) 713 call assert_equal(11, col('.'))
704 714
705 set guioptions& 715 set guioptions&
706 set wrap& 716 set wrap&
707 bwipe! 717 bwipe!