diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2022-07-15 20:45:52 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-15 20:45:52 +0800 |
| commit | c0ae3df0528263d677fff3e1150a7b65589fb88d (patch) | |
| tree | 785d4c06cf5e3a9d9b428e7c29648dce2ebabd2c /src/nvim/testdir/test_options.vim | |
| parent | b9f15caf5ca879841afe582f68838af208b86142 (diff) | |
| parent | 8bfcff6c4a10f5171e29776eea6498a9856b7200 (diff) | |
| download | rneovim-c0ae3df0528263d677fff3e1150a7b65589fb88d.tar.gz rneovim-c0ae3df0528263d677fff3e1150a7b65589fb88d.tar.bz2 rneovim-c0ae3df0528263d677fff3e1150a7b65589fb88d.zip | |
Merge pull request #19376 from zeertzjq/vim-8.2.0535
vim-patch:8.2.{0535,0542}: regexp patterns not fully tested
Diffstat (limited to 'src/nvim/testdir/test_options.vim')
| -rw-r--r-- | src/nvim/testdir/test_options.vim | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_options.vim b/src/nvim/testdir/test_options.vim index 3de84d2ae9..2840378b97 100644 --- a/src/nvim/testdir/test_options.vim +++ b/src/nvim/testdir/test_options.vim @@ -753,6 +753,16 @@ func Test_buftype() bwipe! endfunc +" Test for the 'shell' option +func Test_shell() + throw 'Skipped: Nvim does not have :shell' + CheckUnix + let save_shell = &shell + set shell= + call assert_fails('shell', 'E91:') + let &shell = save_shell +endfunc + " Test for the 'shellquote' option func Test_shellquote() CheckUnix |