diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-03-22 14:08:59 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-03-22 14:08:59 +0100 |
commit | 515545e11f523d14343b1e588dc0b9bd3d362bc2 (patch) | |
tree | 6770a882b96a447d8b455f7c98e6c557c221317a /src/testdir/gen_opt_test.vim | |
parent | 97acfc781bdb7fa2838dc6e0e7f9952ea61bb2fd (diff) | |
download | vim-git-515545e11f523d14343b1e588dc0b9bd3d362bc2.tar.gz |
patch 8.2.0425: code for modeless selection not sufficiently testedv8.2.0425
Problem: Code for modeless selection not sufficiently tested.
Solution: Add tests. Move mouse code functionality to a common script file.
(Yegappan Lakshmanan, closes #5821)
Diffstat (limited to 'src/testdir/gen_opt_test.vim')
-rw-r--r-- | src/testdir/gen_opt_test.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/testdir/gen_opt_test.vim b/src/testdir/gen_opt_test.vim index c3b2325cc..4cb168a8a 100644 --- a/src/testdir/gen_opt_test.vim +++ b/src/testdir/gen_opt_test.vim @@ -73,7 +73,7 @@ let test_values = { \ 'buftype': [['', 'help', 'nofile'], ['xxx', 'help,nofile']], \ 'casemap': [['', 'internal'], ['xxx']], \ 'cedit': [['', '\<Esc>'], ['xxx', 'f']], - \ 'clipboard': [['', 'unnamed', 'autoselect,unnamed'], ['xxx']], + \ 'clipboard': [['', 'unnamed', 'autoselect,unnamed', 'html', 'exclude:vimdisplay'], ['xxx', '\ze*']], \ 'colorcolumn': [['', '8', '+2'], ['xxx']], \ 'comments': [['', 'b:#'], ['xxx']], \ 'commentstring': [['', '/*%s*/'], ['xxx']], |