aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/testdir/test_options.vim
diff options
context:
space:
mode:
authorAshkan Kiani <ashkan.k.kiani@gmail.com>2019-11-24 01:22:16 -0800
committerAshkan Kiani <ashkan.k.kiani@gmail.com>2019-11-24 01:22:16 -0800
commitf7c20b94c7c79ce883fa4f561c5c92f59a06641a (patch)
tree7d41dc325c9bf162527fc448cdcb98179162e9c1 /src/nvim/testdir/test_options.vim
parentd410812311f7b462420690455914ea1316953b3a (diff)
parent222637c341700294a059651bcea62d2e91795646 (diff)
downloadrneovim-f7c20b94c7c79ce883fa4f561c5c92f59a06641a.tar.gz
rneovim-f7c20b94c7c79ce883fa4f561c5c92f59a06641a.tar.bz2
rneovim-f7c20b94c7c79ce883fa4f561c5c92f59a06641a.zip
Merge branch 'master' into lsp-followup
Diffstat (limited to 'src/nvim/testdir/test_options.vim')
-rw-r--r--src/nvim/testdir/test_options.vim6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_options.vim b/src/nvim/testdir/test_options.vim
index f4f5cbca61..6fcc372591 100644
--- a/src/nvim/testdir/test_options.vim
+++ b/src/nvim/testdir/test_options.vim
@@ -476,13 +476,19 @@ func Test_shortmess_F2()
call assert_match('file2', execute('bn', ''))
set shortmess+=F
call assert_true(empty(execute('bn', '')))
+ " call assert_false(test_getvalue('need_fileinfo'))
call assert_true(empty(execute('bn', '')))
+ " call assert_false(test_getvalue('need_fileinfo'))
set hidden
call assert_true(empty(execute('bn', '')))
+ " call assert_false(test_getvalue('need_fileinfo'))
call assert_true(empty(execute('bn', '')))
+ " call assert_false(test_getvalue('need_fileinfo'))
set nohidden
call assert_true(empty(execute('bn', '')))
+ " call assert_false(test_getvalue('need_fileinfo'))
call assert_true(empty(execute('bn', '')))
+ " call assert_false(test_getvalue('need_fileinfo'))
" Accommodate Nvim default.
set shortmess-=F
call assert_match('file1', execute('bn', ''))