From e6c9db6ede33127909a913dd428eb63d71a24fcd Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Fri, 28 Feb 2020 03:10:25 -0500 Subject: [PATCH] vim-patch:8.1.1107: no test for 'visualbell' Problem: No test for 'visualbell'. Solution: Add a test. https://github.com/vim/vim/commit/b4e6a2d07510e18e6720d6b2ee0b029f95430964 --- src/nvim/testdir/test_options.vim | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/nvim/testdir/test_options.vim b/src/nvim/testdir/test_options.vim index 29d391c232..5b9dd7b50a 100644 --- a/src/nvim/testdir/test_options.vim +++ b/src/nvim/testdir/test_options.vim @@ -511,3 +511,9 @@ func Test_shortmess_F2() bwipe bwipe endfunc + +func Test_visualbell() + set visualbell + call assert_beeps('normal 0h') + set novisualbell +endfunc