diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-12-17 23:21:24 -0500 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2020-12-29 22:31:21 -0500 |
commit | c60f7c206402c8ab3f2fe5539953d410be2a322c (patch) | |
tree | dda24ec893b912e685f256a78ecdc8c26913c7ea | |
parent | ca2551bc9b6a0c65b6fa83406fcfdc80d465759c (diff) | |
download | rneovim-c60f7c206402c8ab3f2fe5539953d410be2a322c.tar.gz rneovim-c60f7c206402c8ab3f2fe5539953d410be2a322c.tar.bz2 rneovim-c60f7c206402c8ab3f2fe5539953d410be2a322c.zip |
vim-patch:8.1.0151: mksession test fails on MS-Windows
Problem: Mksession test fails on MS-Windows.
Solution: Always use an argument for :lcd.
https://github.com/vim/vim/commit/81e2ac7bb68a0321529ad5c89c8674caab4bca6b
-rw-r--r-- | src/nvim/testdir/test_mksession.vim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/testdir/test_mksession.vim b/src/nvim/testdir/test_mksession.vim index b5add884f6..d63c8c7f4b 100644 --- a/src/nvim/testdir/test_mksession.vim +++ b/src/nvim/testdir/test_mksession.vim @@ -223,9 +223,9 @@ endfunc func Test_mksession_lcd_multiple_tabs() tabnew tabnew - lcd + lcd . tabfirst - lcd + lcd . mksession! Xtest_mks.out tabonly source Xtest_mks.out |