aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2020-02-28 03:12:03 -0500
committerJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2020-03-01 20:02:10 -0500
commitad0587133f6f805fb75c7bcfede48cd7d50fd556 (patch)
treebc90f306551306b13f5d310d99cb61e509c35e40
parente6c9db6ede33127909a913dd428eb63d71a24fcd (diff)
downloadrneovim-ad0587133f6f805fb75c7bcfede48cd7d50fd556.tar.gz
rneovim-ad0587133f6f805fb75c7bcfede48cd7d50fd556.tar.bz2
rneovim-ad0587133f6f805fb75c7bcfede48cd7d50fd556.zip
vim-patch:8.1.1108: test for 'visualbell' doesn't work
Problem: Test for 'visualbell' doesn't work. Solution: Make 'belloff' empty. https://github.com/vim/vim/commit/7a66627cf43412604a28e0d99df8f96a29ff1c3a
-rw-r--r--src/nvim/testdir/test_options.vim2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_options.vim b/src/nvim/testdir/test_options.vim
index 5b9dd7b50a..c2f710358b 100644
--- a/src/nvim/testdir/test_options.vim
+++ b/src/nvim/testdir/test_options.vim
@@ -513,7 +513,9 @@ func Test_shortmess_F2()
endfunc
func Test_visualbell()
+ set belloff=
set visualbell
call assert_beeps('normal 0h')
set novisualbell
+ set belloff=all
endfunc