diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-11-10 14:20:32 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-10 14:20:32 +0800 |
commit | bf5cf8ae82f2a164fba6ae063e0f5b7cb7c1df7b (patch) | |
tree | 817be2df8d1239c8d0062c584da718790218bfc1 | |
parent | 9af03bcd47127a416aa6a125590b75adb5f53c3c (diff) | |
download | rneovim-bf5cf8ae82f2a164fba6ae063e0f5b7cb7c1df7b.tar.gz rneovim-bf5cf8ae82f2a164fba6ae063e0f5b7cb7c1df7b.tar.bz2 rneovim-bf5cf8ae82f2a164fba6ae063e0f5b7cb7c1df7b.zip |
vim-patch:8.2.4078: terminal test for current directory not used on FreeBSD (#25961)
Problem: Terminal test for current directory not used on FreeBSD.
Solution: Make it work on FreeBSD. (Ozaki Kiichi, closes vim/vim#9516) Add
TermWait() inside Run_shell_in_terminal() as a generic solution.
https://github.com/vim/vim/commit/ced2b38a560cc4f4ec983ed2cf4372ab62e1dbc1
Co-authored-by: Bram Moolenaar <Bram@vim.org>
-rw-r--r-- | test/old/testdir/test_mapping.vim | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/test/old/testdir/test_mapping.vim b/test/old/testdir/test_mapping.vim index 40d0b3e6f7..36a46684c1 100644 --- a/test/old/testdir/test_mapping.vim +++ b/test/old/testdir/test_mapping.vim @@ -1051,7 +1051,6 @@ func Test_map_cmdkey() call assert_equal('t', m) call assert_equal('t', mode(1)) call StopShellInTerminal(buf) - call TermWait(buf) close! tunmap <F3> endif |