Merge pull request #38099 from zeertzjq/vim-9.1.0535

vim-patch:9.1.{0535,0539},9.2.0070
This commit is contained in:
zeertzjq
2026-02-28 07:46:36 +08:00
committed by GitHub
3 changed files with 59 additions and 22 deletions

View File

@@ -2341,12 +2341,7 @@ static char *do_one_cmd(char **cmdlinep, int flags, cstack_T *cstack, LineGetter
// Also do this for ":read !cmd", ":write !cmd" and ":global".
// Any others?
for (char *s = ea.arg; *s; s++) {
// Remove one backslash before a newline, so that it's possible to
// pass a newline to the shell and also a newline that is preceded
// with a backslash. This makes it impossible to end a shell
// command in a backslash, but that doesn't appear useful.
// Halving the number of backslashes is incompatible with previous
// versions.
// Remove one backslash before a newline.
if (*s == '\\' && s[1] == '\n') {
STRMOVE(s, s + 1);
} else if (*s == '\n') {

View File

@@ -113,7 +113,7 @@ func Test_Ex_emptybuf()
call setline(1, "abc")
call assert_fails('call feedkeys("Q\<CR>", "xt")', 'E501:')
call assert_fails('call feedkeys("Q%d\<CR>", "xt")', 'E749:')
close!
bw!
endfunc
" Test for the :open command
@@ -126,7 +126,7 @@ func Test_open_command()
call feedkeys("Qopen /bar/\<CR>", 'xt')
call assert_equal(5, col('.'))
call assert_fails('call feedkeys("Qopen /baz/\<CR>", "xt")', 'E479:')
close!
bw!
endfunc
func Test_open_command_flush_line()
@@ -174,6 +174,39 @@ func Test_Ex_global()
call assert_equal('bax', getline(3))
call assert_equal('bay', getline(5))
bwipe!
throw 'Skipped: Nvim only supports Vim Ex mode'
new
call setline(1, ['foo', 'bar'])
call feedkeys("Qg/./i\\\na\\\n.\\\na\\\nb\\\n.", "xt")
call assert_equal(['a', 'b', 'foo', 'a', 'b', 'bar'], getline(1, '$'))
bwipe!
endfunc
func Test_Ex_shell()
throw 'Skipped: Nvim only supports Vim Ex mode'
CheckUnix
new
call feedkeys("Qr !echo foo\\\necho bar\n", 'xt')
call assert_equal(['', 'foo', 'bar'], getline(1, '$'))
bwipe!
new
call feedkeys("Qr !echo foo\\\\\nbar\n", 'xt')
call assert_equal(['', 'foobar'], getline(1, '$'))
bwipe!
new
call feedkeys("Qr !echo foo\\ \\\necho bar\n", 'xt')
call assert_equal(['', 'foo ', 'bar'], getline(1, '$'))
bwipe!
new
call setline(1, ['bar', 'baz'])
call feedkeys("Qg/./!echo \\\ns/b/c/", "xt")
call assert_equal(['car', 'caz'], getline(1, '$'))
bwipe!
endfunc
" Test for pressing Ctrl-C in :append inside a loop in Ex mode
@@ -213,20 +246,12 @@ func Test_Ex_append()
call setline(1, "\t abc")
call feedkeys("Qappend!\npqr\nxyz\n.\nvisual\n", 'xt')
call assert_equal(["\t abc", "\t pqr", "\t xyz"], getline(1, '$'))
close!
endfunc
bw!
" In Ex-mode, backslashes at the end of a command should be halved.
func Test_Ex_echo_backslash()
throw 'Skipped: Nvim only supports Vim Ex mode'
" This test works only when the language is English
CheckEnglish
let bsl = '\\\\'
let bsl2 = '\\\'
call assert_fails('call feedkeys("Qecho " .. bsl .. "\nvisual\n", "xt")',
\ 'E15: Invalid expression: "\\"')
call assert_fails('call feedkeys("Qecho " .. bsl2 .. "\nm\nvisual\n", "xt")',
\ "E15: Invalid expression: \"\\\nm\"")
new
call feedkeys("Qappend\na\\\n.", 'xt')
call assert_equal(['a\'], getline(1, '$'))
bw!
endfunc
func Test_ex_mode_errors()
@@ -325,6 +350,23 @@ func Test_empty_command_visual_mode()
call delete('Xexmodescript')
endfunc
" Test using backslash in ex-mode
func Test_backslash_multiline()
throw 'Skipped: Nvim only supports Vim Ex mode'
new
call setline(1, 'enum')
call feedkeys('Qg/enum/i\
\
.', "xt")
call assert_equal(["", "enum"], getline(1, 2))
endfunc
" Test using backslash in ex-mode after patch 9.1.0535
func Test_backslash_multiline2()
throw 'Skipped: Nvim only supports Vim Ex mode'
new
call feedkeys('Qa
X \\
Y
.', "xt")
call assert_equal(['X \\', "Y"], getline(1, 2))

View File

@@ -69,7 +69,7 @@ func Test_global_print()
v/foo\|bar/p
call assert_notequal('', v:statusmsg)
close!
bw!
endfunc
func Test_global_empty_pattern()