diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2022-04-21 07:04:40 +0800 |
|---|---|---|
| committer | zeertzjq <zeertzjq@outlook.com> | 2022-04-21 07:09:42 +0800 |
| commit | 87e1693ba63ff6d936ad0bf8a6a9cbacfe2413e9 (patch) | |
| tree | bab53c87f3cf07f3709374448b5bfba6419bb97b /src/nvim/testdir | |
| parent | c6dcc6acd84adbaed8e6bcba0cb5e42bffdf1732 (diff) | |
| download | rneovim-87e1693ba63ff6d936ad0bf8a6a9cbacfe2413e9.tar.gz rneovim-87e1693ba63ff6d936ad0bf8a6a9cbacfe2413e9.tar.bz2 rneovim-87e1693ba63ff6d936ad0bf8a6a9cbacfe2413e9.zip | |
vim-patch:8.2.4797: getwininfo() may get oudated values
Problem: getwininfo() may get oudated values.
Solution: Make sure w_botline is up-to-date. (closes vim/vim#10226)
https://github.com/vim/vim/commit/8530b41fd3872c9a1349b083470d565677948518
Correct test order and add a modeline in test_bufwintabinfo.vim.
Diffstat (limited to 'src/nvim/testdir')
| -rw-r--r-- | src/nvim/testdir/test_bufwintabinfo.vim | 34 |
1 files changed, 29 insertions, 5 deletions
diff --git a/src/nvim/testdir/test_bufwintabinfo.vim b/src/nvim/testdir/test_bufwintabinfo.vim index a6eb93b4be..326aefb731 100644 --- a/src/nvim/testdir/test_bufwintabinfo.vim +++ b/src/nvim/testdir/test_bufwintabinfo.vim @@ -145,6 +145,13 @@ function Test_get_win_options() endif endfunc +function Test_getbufinfo_lastused() + new Xfoo + let info = getbufinfo('Xfoo')[0] + call assert_equal(has_key(info, 'lastused'), 1) + call assert_equal(type(info.lastused), type(0)) +endfunc + func Test_getbufinfo_lines() new Xfoo call setline(1, ['a', 'bc', 'd']) @@ -155,9 +162,26 @@ func Test_getbufinfo_lines() bw! endfunc -function Test_getbufinfo_lastused() - new Xfoo - let info = getbufinfo('Xfoo')[0] - call assert_equal(has_key(info, 'lastused'), 1) - call assert_equal(type(info.lastused), type(0)) +func Test_getwininfo_au() + enew + call setline(1, range(1, 16)) + + let g:info = #{} + augroup T1 + au! + au WinEnter * let g:info = getwininfo(win_getid())[0] + augroup END + + 4split + " Check that calling getwininfo() from WinEnter returns fresh values for + " topline and botline. + call assert_equal(1, g:info.topline) + call assert_equal(4, g:info.botline) + close + + unlet g:info + augroup! T1 + bwipe! endfunc + +" vim: shiftwidth=2 sts=2 expandtab |