diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-01-29 20:30:48 -0500 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-01-29 20:31:16 -0500 |
commit | f719b8898ba8aa18f0411be1924eea132a3b103e (patch) | |
tree | daf79cba6bc169353a9329d1192e4d3771801c2f | |
parent | ca08d5c19117aa6a9b2ec288903e46823348ad07 (diff) | |
download | rneovim-f719b8898ba8aa18f0411be1924eea132a3b103e.tar.gz rneovim-f719b8898ba8aa18f0411be1924eea132a3b103e.tar.bz2 rneovim-f719b8898ba8aa18f0411be1924eea132a3b103e.zip |
vim-patch:8.1.0446: options test fails in the GUI
Problem: Options test fails in the GUI.
Solution: Don't try changing 'term' in the GUI.
https://github.com/vim/vim/commit/4f888757257795969f2ab2e6fc3544a5bef3cdea
-rw-r--r-- | src/nvim/testdir/test_options.vim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_options.vim b/src/nvim/testdir/test_options.vim index f9e4c2af85..29d391c232 100644 --- a/src/nvim/testdir/test_options.vim +++ b/src/nvim/testdir/test_options.vim @@ -279,6 +279,9 @@ endfunc " Must be executed before other tests that set 'term'. func Test_000_term_option_verbose() + if has('nvim') || has('gui_running') + return + endif let verb_cm = execute('verbose set t_cm') call assert_notmatch('Last set from', verb_cm) |