diff options
| author | bfredl <bjorn.linse@gmail.com> | 2022-05-18 13:08:07 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-18 13:08:07 +0200 |
| commit | d7dd6007167eac919205404bc4e556237118a7a7 (patch) | |
| tree | d8b12409da742da89a2b7bf4847e5084956b0618 /src/nvim/testdir | |
| parent | 2d277320295d1380ac093d547206b295bbdcf414 (diff) | |
| parent | e1bdb2a258cbe6c5cb981acc6bac82cd9e7706fb (diff) | |
| download | rneovim-d7dd6007167eac919205404bc4e556237118a7a7.tar.gz rneovim-d7dd6007167eac919205404bc4e556237118a7a7.tar.bz2 rneovim-d7dd6007167eac919205404bc4e556237118a7a7.zip | |
Merge pull request #18562 from famiu/feat/ui/winbar
feat(ui): add `'winbar'`
Diffstat (limited to 'src/nvim/testdir')
| -rw-r--r-- | src/nvim/testdir/test_cursor_func.vim | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/nvim/testdir/test_cursor_func.vim b/src/nvim/testdir/test_cursor_func.vim index 9ba82e3b70..6c6a6290cb 100644 --- a/src/nvim/testdir/test_cursor_func.vim +++ b/src/nvim/testdir/test_cursor_func.vim @@ -102,10 +102,11 @@ func Test_screenpos() bwipe! call assert_equal({'col': 1, 'row': 1, 'endcol': 1, 'curscol': 1}, screenpos(win_getid(), 1, 1)) - " Needs WinBar " nmenu WinBar.TEST : - " call assert_equal({'col': 1, 'row': 2, 'endcol': 1, 'curscol': 1}, screenpos(win_getid(), 1, 1)) + setlocal winbar=TEST + call assert_equal({'col': 1, 'row': 2, 'endcol': 1, 'curscol': 1}, screenpos(win_getid(), 1, 1)) " nunmenu WinBar.TEST + setlocal winbar& endfunc func Test_screenpos_number() |