diff options
| author | bfredl <bjorn.linse@gmail.com> | 2022-01-27 09:00:01 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-27 09:00:01 +0100 |
| commit | 3d0149f9848e22e7eb15652b1ec01d5920bd680a (patch) | |
| tree | 8ad5ed1eb57cd4bdb90fead894b7c8e70e0627b3 /src/nvim/testdir/check.vim | |
| parent | 9c4e617064a100856bb06e1dec5be27cf22f78f4 (diff) | |
| parent | 95873aa3eb566ee83c22c51f1d48118029c4f9ab (diff) | |
| download | rneovim-3d0149f9848e22e7eb15652b1ec01d5920bd680a.tar.gz rneovim-3d0149f9848e22e7eb15652b1ec01d5920bd680a.tar.bz2 rneovim-3d0149f9848e22e7eb15652b1ec01d5920bd680a.zip | |
Merge pull request #17191 from zeertzjq/vim-8.2.4203
vim-patch:8.2.4203: entering a character with CTRL-V may include modifiers
Diffstat (limited to 'src/nvim/testdir/check.vim')
| -rw-r--r-- | src/nvim/testdir/check.vim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/testdir/check.vim b/src/nvim/testdir/check.vim index 14bab33a2f..ab26dddbe0 100644 --- a/src/nvim/testdir/check.vim +++ b/src/nvim/testdir/check.vim @@ -12,9 +12,9 @@ endfunc " Command to check for the absence of a feature. command -nargs=1 CheckNotFeature call CheckNotFeature(<f-args>) func CheckNotFeature(name) - if !has(a:name, 1) - throw 'Checking for non-existent feature ' .. a:name - endif + " if !has(a:name, 1) + " throw 'Checking for non-existent feature ' .. a:name + " endif if has(a:name) throw 'Skipped: ' .. a:name .. ' feature present' endif |