From b0d3f47e9044988e433a7e299e3080b0f33a21bc Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Tue, 24 Nov 2020 22:30:01 -0500 Subject: vim-patch:8.2.0303: TermChanged test fails in the GUI Problem: TermChanged test fails in the GUI. Solution: Skip the test when running the GUI. https://github.com/vim/vim/commit/d28e0b3652067788fcc9c99058b0b6eee7beebee --- src/nvim/testdir/test_autocmd.vim | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src') diff --git a/src/nvim/testdir/test_autocmd.vim b/src/nvim/testdir/test_autocmd.vim index f1c1d45ada..22f03e1076 100644 --- a/src/nvim/testdir/test_autocmd.vim +++ b/src/nvim/testdir/test_autocmd.vim @@ -1862,6 +1862,9 @@ func LogACmd() endfunc func Test_TermChanged() + throw 'skipped: Nvim does not support TermChanged event' + CheckNotGui + enew! tabnew call setline(1, ['a', 'b', 'c', 'd']) -- cgit