aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/testdir/test_find_complete.vim
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/testdir/test_find_complete.vim')
-rw-r--r--src/nvim/testdir/test_find_complete.vim3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_find_complete.vim b/src/nvim/testdir/test_find_complete.vim
index 4732109ed0..1019246404 100644
--- a/src/nvim/testdir/test_find_complete.vim
+++ b/src/nvim/testdir/test_find_complete.vim
@@ -3,6 +3,8 @@
" Do all the tests in a separate window to avoid E211 when we recursively
" delete the Xfind directory during cleanup
func Test_find_complete()
+ let shellslash = &shellslash
+ set shellslash
set belloff=all
" On windows a stale "Xfind" directory may exist, remove it so that
@@ -154,4 +156,5 @@ func Test_find_complete()
exe 'cd ' . cwd
call delete('Xfind', 'rf')
set path&
+ let &shellslash = shellslash
endfunc