diff options
author | Lewis Russell <lewis6991@gmail.com> | 2022-09-02 15:20:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-02 15:20:29 +0100 |
commit | 2afcdbd63a5b0cbeaad9d83b096a3af5201c67a9 (patch) | |
tree | a5e44f3dba1287c398af66673fa926e4841c5343 /src | |
parent | e085d0be31c68921769c6c437920a3346caec69b (diff) | |
download | rneovim-2afcdbd63a5b0cbeaad9d83b096a3af5201c67a9.tar.gz rneovim-2afcdbd63a5b0cbeaad9d83b096a3af5201c67a9.tar.bz2 rneovim-2afcdbd63a5b0cbeaad9d83b096a3af5201c67a9.zip |
feat(Man): port to Lua (#19912)
Co-authored-by: zeertzjq <zeertzjq@outlook.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/testdir/test_profile.vim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/testdir/test_profile.vim b/src/nvim/testdir/test_profile.vim index fdb6f13e2b..4225b91bc4 100644 --- a/src/nvim/testdir/test_profile.vim +++ b/src/nvim/testdir/test_profile.vim @@ -40,8 +40,8 @@ func Test_profile_func() call writefile(lines, 'Xprofile_func.vim') call system(GetVimCommand() \ . ' -es --clean' - \ . ' -c "so Xprofile_func.vim"' - \ . ' -c "qall!"') + \ . ' --cmd "so Xprofile_func.vim"' + \ . ' --cmd "qall!"') call assert_equal(0, v:shell_error) let lines = readfile('Xprofile_func.log') @@ -475,7 +475,7 @@ func Test_profdel_func() call Foo3() [CODE] call writefile(lines, 'Xprofile_file.vim') - call system(GetVimCommandClean() . ' -es -c "so Xprofile_file.vim" -c q') + call system(GetVimCommandClean() . ' -es --cmd "so Xprofile_file.vim" --cmd q') call assert_equal(0, v:shell_error) let lines = readfile('Xprofile_file.log') |