diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-09-21 22:13:07 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-09-21 22:35:20 +0200 |
commit | 28b5a637b57040c0e045cb2ad57bdfbd3881c8cb (patch) | |
tree | 0045e50d7690754fe15b4746fee9a2585a13e1a9 | |
parent | efbc33cbbc030df3478d051502d1c14c1c73b3df (diff) | |
download | rneovim-28b5a637b57040c0e045cb2ad57bdfbd3881c8cb.tar.gz rneovim-28b5a637b57040c0e045cb2ad57bdfbd3881c8cb.tar.bz2 rneovim-28b5a637b57040c0e045cb2ad57bdfbd3881c8cb.zip |
test/old: test_options: Accommodate Nvim default
-rw-r--r-- | src/nvim/testdir/test_options.vim | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_options.vim b/src/nvim/testdir/test_options.vim index 921e9fd9f4..3e0703f845 100644 --- a/src/nvim/testdir/test_options.vim +++ b/src/nvim/testdir/test_options.vim @@ -359,6 +359,8 @@ endfunc func Test_shortmess_F2() e file1 e file2 + " Accommodate Nvim default. + set shortmess-=F call assert_match('file1', execute('bn', '')) call assert_match('file2', execute('bn', '')) set shortmess+=F @@ -370,7 +372,8 @@ func Test_shortmess_F2() set nohidden call assert_true(empty(execute('bn', ''))) call assert_true(empty(execute('bn', ''))) - set shortmess& + " Accommodate Nvim default. + set shortmess-=F call assert_match('file1', execute('bn', '')) call assert_match('file2', execute('bn', '')) bwipe |