diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2021-07-30 09:19:44 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-30 09:19:44 -0400 |
commit | ca3071ea93368621e3665a8aa75e2e95e839a1c1 (patch) | |
tree | af8620849739a4ab47e8d71336e7f1d2fd5db7f6 /test | |
parent | 74a38c03c0e1d0668d3cdcf32e706da2a6332efb (diff) | |
parent | 96a6b9b52d93732fc39664e202470a65da6012b3 (diff) | |
download | rneovim-ca3071ea93368621e3665a8aa75e2e95e839a1c1.tar.gz rneovim-ca3071ea93368621e3665a8aa75e2e95e839a1c1.tar.bz2 rneovim-ca3071ea93368621e3665a8aa75e2e95e839a1c1.zip |
Merge pull request #15062 from seandewar/vim-8.1.0829
vim-patch:8.1.0829: when 'hidden' is set session creates extra buffers
Diffstat (limited to 'test')
-rw-r--r-- | test/functional/ex_cmds/mksession_spec.lua | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/test/functional/ex_cmds/mksession_spec.lua b/test/functional/ex_cmds/mksession_spec.lua index 949724bb53..09eaa36686 100644 --- a/test/functional/ex_cmds/mksession_spec.lua +++ b/test/functional/ex_cmds/mksession_spec.lua @@ -43,7 +43,7 @@ describe(':mksession', function() -- Restore session. command('source '..session_file) - eq({3,3,2}, + eq({2,2,4}, {funcs.winbufnr(1), funcs.winbufnr(2), funcs.winbufnr(3)}) end) @@ -91,7 +91,12 @@ describe(':mksession', function() command('tabnext 1') eq(cwd_dir .. get_pathsep() .. tmpfile_base .. '1', funcs.expand('%:p')) command('tabnext 2') - eq(cwd_dir .. get_pathsep() .. tmpfile_base .. '2', funcs.expand('%:p')) + -- :mksession stores paths using unix slashes, but Nvim doesn't adjust these + -- for absolute paths in all cases yet. Absolute paths are used in the + -- session file after :tcd, so we need to expect unix slashes here for now + -- eq(cwd_dir .. get_pathsep() .. tmpfile_base .. '2', funcs.expand('%:p')) + eq(cwd_dir:gsub([[\]], '/') .. '/' .. tmpfile_base .. '2', + funcs.expand('%:p')) end) it('restores CWD for :terminal buffers #11288', function() |