diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-08-10 04:11:35 +0200 |
---|---|---|
committer | ckelsel <ckelsel@hotmail.com> | 2017-08-14 07:45:49 +0800 |
commit | e214cc2cdc5bd262ef0c4b20f1daf7647c490063 (patch) | |
tree | fde1115e0cad9d49caae705bd385773813be665b | |
parent | 5ed2ab6d5327ed7c54edc9fa5eb1cfa447edbf2a (diff) | |
download | rneovim-e214cc2cdc5bd262ef0c4b20f1daf7647c490063.tar.gz rneovim-e214cc2cdc5bd262ef0c4b20f1daf7647c490063.tar.bz2 rneovim-e214cc2cdc5bd262ef0c4b20f1daf7647c490063.zip |
oldtest: cannot `:set term` in Nvim
-rw-r--r-- | src/nvim/testdir/test_display.vim | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/nvim/testdir/test_display.vim b/src/nvim/testdir/test_display.vim index 48b7a2318e..0ed672d577 100644 --- a/src/nvim/testdir/test_display.vim +++ b/src/nvim/testdir/test_display.vim @@ -1,7 +1,9 @@ " Test for displaying stuff -if !has('gui_running') && has('unix') - set term=ansi -endif + +" Nvim: `:set term` is not supported. +" if !has('gui_running') && has('unix') +" set term=ansi +" endif source view_util.vim |