diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-11-24 22:30:01 -0500 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-11-24 22:52:06 -0500 |
commit | b0d3f47e9044988e433a7e299e3080b0f33a21bc (patch) | |
tree | 7a55c9d963fb3fc02e9fd1ca84b82f311ad3a37a | |
parent | eae90b37c37410f2f28c66c8b4535e5a5ce65cc8 (diff) | |
download | rneovim-b0d3f47e9044988e433a7e299e3080b0f33a21bc.tar.gz rneovim-b0d3f47e9044988e433a7e299e3080b0f33a21bc.tar.bz2 rneovim-b0d3f47e9044988e433a7e299e3080b0f33a21bc.zip |
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
-rw-r--r-- | src/nvim/testdir/test_autocmd.vim | 3 |
1 files changed, 3 insertions, 0 deletions
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']) |