diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2022-09-23 07:14:32 +0800 |
|---|---|---|
| committer | zeertzjq <zeertzjq@outlook.com> | 2022-09-23 07:38:22 +0800 |
| commit | c28f00b101148d17a640fe2a186b23fbe230fbf3 (patch) | |
| tree | 61d3ff2d9240ab65ec2200efbe14c966b976b471 /src/nvim/testdir | |
| parent | 0760379b413ca95b80ed2970b49f14ba3b1acbf9 (diff) | |
| download | rneovim-c28f00b101148d17a640fe2a186b23fbe230fbf3.tar.gz rneovim-c28f00b101148d17a640fe2a186b23fbe230fbf3.tar.bz2 rneovim-c28f00b101148d17a640fe2a186b23fbe230fbf3.zip | |
vim-patch:9.0.0550: crash when closing a tabpage and buffer is NULL
Problem: Crash when closing a tabpage and buffer is NULL.
Solution: Adjust how autocommands are triggered when closing a window.
(closes vim/vim#11198, closes vim/vim#11197)
https://github.com/vim/vim/commit/62de54b48d6354d4622ec0b21ffa4cf3cf312505
Diffstat (limited to 'src/nvim/testdir')
| -rw-r--r-- | src/nvim/testdir/test_autocmd.vim | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_autocmd.vim b/src/nvim/testdir/test_autocmd.vim index 1be2d11034..d766256d4b 100644 --- a/src/nvim/testdir/test_autocmd.vim +++ b/src/nvim/testdir/test_autocmd.vim @@ -447,6 +447,26 @@ func Test_WinClosed_throws_with_tabs() augroup! test-WinClosed endfunc +" This used to trigger WinClosed twice for the same window, and the window's +" buffer was NULL in the second autocommand. +func Test_WinClosed_switch_tab() + edit Xa + split Xb + split Xc + tab split + new + augroup test-WinClosed + autocmd WinClosed * tabprev | bwipe! + augroup END + close + " Check that the tabline has been fully removed + call assert_equal([1, 1], win_screenpos(0)) + + autocmd! test-WinClosed + augroup! test-WinClosed + %bwipe! +endfunc + func s:AddAnAutocmd() augroup vimBarTest au BufReadCmd * echo 'hello' |