aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/testdir/test_suspend.vim
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2022-02-14 18:56:30 +0800
committerzeertzjq <zeertzjq@outlook.com>2022-02-14 18:56:30 +0800
commit8a80ab27bd7b819f4c8b48976b641dab002f0247 (patch)
tree6c814df000273b50b5bb4fee3af43a6067e7d3f4 /src/nvim/testdir/test_suspend.vim
parent046950f6309070d98ab5a3deeff9d00e079ccdd4 (diff)
downloadrneovim-8a80ab27bd7b819f4c8b48976b641dab002f0247.tar.gz
rneovim-8a80ab27bd7b819f4c8b48976b641dab002f0247.tar.bz2
rneovim-8a80ab27bd7b819f4c8b48976b641dab002f0247.zip
vim-patch:8.1.1846: inconsistently using GetVimCommand() and v:progpath
Problem: Inconsistently using GetVimCommand() and v:progpath. (Daniel Hahler) Solution: Use GetVimCommand(). (closes vim/vim#4806) https://github.com/vim/vim/commit/93344c2d707d9953f351c944e6a237c9916f69a3 Cherry-pick a change to test_profile.vim from patch 8.1.1544. Cherry-pick a change to test_vimscript.vim from patch 8.1.1826. Some of the args are no-op in Nvim, and `-i NONE` and `--headless` are already added by `GetVimCommand()`. I'll try to match the order of args in upstream, substituting `--not-a-term` with `--headless`.
Diffstat (limited to 'src/nvim/testdir/test_suspend.vim')
-rw-r--r--src/nvim/testdir/test_suspend.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/testdir/test_suspend.vim b/src/nvim/testdir/test_suspend.vim
index 4b3bd5eadf..bf88bd4453 100644
--- a/src/nvim/testdir/test_suspend.vim
+++ b/src/nvim/testdir/test_suspend.vim
@@ -26,8 +26,8 @@ func Test_suspend()
" Wait for shell prompt.
call WaitForAssert({-> assert_match('[$#] $', term_getline(buf, '.'))})
- call term_sendkeys(buf, v:progpath
- \ . " --clean -X"
+ call term_sendkeys(buf, GetVimCommandClean()
+ \ . " -X"
\ . " -c 'set nu'"
\ . " -c 'call setline(1, \"foo\")'"
\ . " Xfoo\<CR>")