diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-06-13 19:39:32 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-06-13 19:39:55 -0400 |
commit | 6efa3bff09afb0e54ad71278ac60259bf41be286 (patch) | |
tree | 2808092c201ecb4b7e936d44b71f01d1dc6e6f15 /src | |
parent | 47a545667006ded57dc9660333e4ea2cab23b679 (diff) | |
download | rneovim-6efa3bff09afb0e54ad71278ac60259bf41be286.tar.gz rneovim-6efa3bff09afb0e54ad71278ac60259bf41be286.tar.bz2 rneovim-6efa3bff09afb0e54ad71278ac60259bf41be286.zip |
test/old: pass Test_statusline on Windows
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/testdir/test_statusline.vim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/nvim/testdir/test_statusline.vim b/src/nvim/testdir/test_statusline.vim index b86340a23a..ea29da0262 100644 --- a/src/nvim/testdir/test_statusline.vim +++ b/src/nvim/testdir/test_statusline.vim @@ -86,8 +86,11 @@ func Test_statusline() call assert_match('^Xstatusline\s*$', s:get_statusline()) " %F: Full path to the file in the buffer. + let shellslash = &shellslash + set shellslash set statusline=%F call assert_match('/testdir/Xstatusline\s*$', s:get_statusline()) + let &shellslash = shellslash " %h: Help buffer flag, text is "[help]". " %H: Help buffer flag, text is ",HLP". |