diff options
author | Matthieu Coudron <mattator@gmail.com> | 2020-05-23 14:33:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-23 14:33:33 +0200 |
commit | 97bcab8f5eeb8c5b2627fdfc3adad2682bb3681e (patch) | |
tree | 1a91f81879d226f1b5e38251bb56ceca5c184639 /src/nvim/testdir/test_cursor_func.vim | |
parent | ef8f965c64c157de728124a84281630cfb234002 (diff) | |
parent | 0666b23d65c6dd6880166db0d2ed6a150b0554d0 (diff) | |
download | rneovim-97bcab8f5eeb8c5b2627fdfc3adad2682bb3681e.tar.gz rneovim-97bcab8f5eeb8c5b2627fdfc3adad2682bb3681e.tar.bz2 rneovim-97bcab8f5eeb8c5b2627fdfc3adad2682bb3681e.zip |
Merge pull request #12327 from janlazo/vim-8.2.0766
vim-patch:8.1.2228,8.2.{36,37,766,810}
Diffstat (limited to 'src/nvim/testdir/test_cursor_func.vim')
-rw-r--r-- | src/nvim/testdir/test_cursor_func.vim | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_cursor_func.vim b/src/nvim/testdir/test_cursor_func.vim index e8e561dfd8..2e190911b2 100644 --- a/src/nvim/testdir/test_cursor_func.vim +++ b/src/nvim/testdir/test_cursor_func.vim @@ -93,3 +93,18 @@ func Test_screenpos() close bwipe! endfunc + +func Test_screenpos_number() + rightbelow new + rightbelow 73vsplit + call setline (1, repeat('x', 66)) + setlocal number + redraw + let winid = win_getid() + let [winrow, wincol] = win_screenpos(winid) + let pos = screenpos(winid, 1, 66) + call assert_equal(winrow, pos.row) + call assert_equal(wincol + 66 + 3, pos.col) + close + bwipe! +endfunc |