diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2019-03-08 12:23:53 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-03-08 12:23:53 +0100 |
| commit | 0355c1ed9c481d4ad3bf24887e0af869834e1b40 (patch) | |
| tree | 514a6d13225e96d17dbc36f0a8d8c1991acacc3c /src/nvim/testdir/test_true_false.vim | |
| parent | 5f84b1dc4154ea8def87b6113fa9b9ed058d83d2 (diff) | |
| parent | e3d9945f7fd773b69844460153d8481790ff1f30 (diff) | |
| download | rneovim-0355c1ed9c481d4ad3bf24887e0af869834e1b40.tar.gz rneovim-0355c1ed9c481d4ad3bf24887e0af869834e1b40.tar.bz2 rneovim-0355c1ed9c481d4ad3bf24887e0af869834e1b40.zip | |
Merge #9695 'vim-patch:8.1.{739,826,998}'
Diffstat (limited to 'src/nvim/testdir/test_true_false.vim')
| -rw-r--r-- | src/nvim/testdir/test_true_false.vim | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_true_false.vim b/src/nvim/testdir/test_true_false.vim index 84aca737ac..4a5d47471d 100644 --- a/src/nvim/testdir/test_true_false.vim +++ b/src/nvim/testdir/test_true_false.vim @@ -57,6 +57,9 @@ endfunc " Test using TRUE or FALSE values for an argument. func Test_true_false_arg() + let shellslash = &shellslash + let wildignore = &wildignore + set shellslash call Try_arg_true_false('count(["a", "A"], "a", %v%)', 1, 2) set wildignore=*.swp @@ -110,6 +113,8 @@ func Test_true_false_arg() let here_id = synID(1, 3, 0) call Try_arg_true_false('synID(1, 3, %v%)', here_id, brackets_id) bwipe! + let &wildignore = wildignore + let &shellslash = shellslash endfunc function Try_arg_non_zero(expr, false_val, true_val) |