comparison src/testdir/test_autocmd.vim @ 23863:a91f3147d06e v8.2.2473

patch 8.2.2473: crash when leaving command line window triggers autocommand Commit: https://github.com/vim/vim/commit/8c6951fa2836a1ae3257770e7b927a9380439912 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Feb 6 18:08:45 2021 +0100 patch 8.2.2473: crash when leaving command line window triggers autocommand Problem: Crash when leaving command line window triggers autocommand. (houyunsong) Solution: Make sure not to close the current window or buffer.
author Bram Moolenaar <Bram@vim.org>
date Sat, 06 Feb 2021 18:15:06 +0100
parents 5d11a15dbaa9
children e1643a1aa1a0
comparison
equal deleted inserted replaced
23862:9afc3816a133 23863:a91f3147d06e
2772 augroup aucmd_normal_test 2772 augroup aucmd_normal_test
2773 au! 2773 au!
2774 augroup END 2774 augroup END
2775 endfunc 2775 endfunc
2776 2776
2777 func Test_autocmd_closing_cmdwin()
2778 au BufWinLeave * nested q
2779 call assert_fails("norm 7q?\n", 'E855:')
2780
2781 au! BufWinLeave
2782 new
2783 only
2784 endfunc
2785
2777 " vim: shiftwidth=2 sts=2 expandtab 2786 " vim: shiftwidth=2 sts=2 expandtab