diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-04-03 22:52:34 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-04-03 22:52:34 +0200 |
commit | 7a66627cf43412604a28e0d99df8f96a29ff1c3a (patch) | |
tree | 2968cc3a24062a770dec0ba1fe9f51aef78d56a9 /src/testdir/test_options.vim | |
parent | b4e6a2d07510e18e6720d6b2ee0b029f95430964 (diff) | |
download | vim-git-7a66627cf43412604a28e0d99df8f96a29ff1c3a.tar.gz |
patch 8.1.1108: test for 'visualbell' doesn't workv8.1.1108
Problem: Test for 'visualbell' doesn't work.
Solution: Make 'belloff' empty.
Diffstat (limited to 'src/testdir/test_options.vim')
-rw-r--r-- | src/testdir/test_options.vim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/testdir/test_options.vim b/src/testdir/test_options.vim index 241c7b6e0..6cc0c1a18 100644 --- a/src/testdir/test_options.vim +++ b/src/testdir/test_options.vim @@ -539,7 +539,9 @@ func Test_writedelay() endfunc func Test_visualbell() + set belloff= set visualbell call assert_beeps('normal 0h') set novisualbell + set belloff=all endfunc |