vim-patch:8.2.0578: heredoc for interfaces does not support "trim"

Problem:    Heredoc for interfaces does not support "trim".
Solution:   Update the script heredoc support to be same as the :let command.
            (Yegappan Lakshmanan, closes vim/vim#5916)

6c2b7b8055
This commit is contained in:
zeertzjq 2023-04-29 08:12:32 +08:00
parent 291fd767e3
commit 4bcf8c15b3
13 changed files with 173 additions and 56 deletions

View File

@ -19,7 +19,7 @@ See |provider-perl| for more information.
working: > working: >
:perl print "Hello" :perl print "Hello"
:[range]perl << [endmarker] :[range]perl << [trim] [{endmarker}]
{script} {script}
{endmarker} {endmarker}
Execute perl script {script}. Execute perl script {script}.

View File

@ -19,17 +19,16 @@ Commands *python-commands*
the `:python` command is working: >vim the `:python` command is working: >vim
:python print "Hello" :python print "Hello"
:[range]py[thon] << [endmarker] :[range]py[thon] << [trim] [{endmarker}]
{script} {script}
{endmarker} {endmarker}
Execute Python script {script}. Useful for including Execute Python script {script}. Useful for including
python code in Vim scripts. Requires Python, see python code in Vim scripts. Requires Python, see
|script-here|. |script-here|.
The {endmarker} below the {script} must NOT be preceded by any white space.
If [endmarker] is omitted from after the "<<", a dot '.' must be used after If [endmarker] is omitted from after the "<<", a dot '.' must be used after
{script}, like for the |:append| and |:insert| commands. {script}, like for the |:append| and |:insert| commands. Refer to
|:let-heredoc| for more information.
Example: >vim Example: >vim
function! IcecreamInitialize() function! IcecreamInitialize()
@ -597,12 +596,12 @@ variants explicitly if Python 3 is required.
*:py3* *:python3* *:py3* *:python3*
:[range]py3 {stmt} :[range]py3 {stmt}
:[range]py3 << [endmarker] :[range]py3 << [trim] [{endmarker}]
{script} {script}
{endmarker} {endmarker}
:[range]python3 {stmt} :[range]python3 {stmt}
:[range]python3 << [endmarker] :[range]python3 << [trim] [{endmarker}]
{script} {script}
{endmarker} {endmarker}
The `:py3` and `:python3` commands work similar to `:python`. A The `:py3` and `:python3` commands work similar to `:python`. A

View File

@ -19,15 +19,15 @@ downloading Ruby there.
:rub[y] {cmd} Execute Ruby command {cmd}. A command to try it out: > :rub[y] {cmd} Execute Ruby command {cmd}. A command to try it out: >
:ruby print "Hello" :ruby print "Hello"
:rub[y] << [endmarker] :rub[y] << [trim] [{endmarker}]
{script} {script}
{endmarker} {endmarker}
Execute Ruby script {script}. Execute Ruby script {script}.
The {endmarker} after {script} must NOT be preceded by
any white space.
If [endmarker] is omitted, it defaults to a dot '.' If [endmarker] is omitted, it defaults to a dot '.'
like for the |:append| and |:insert| commands. like for the |:append| and |:insert| commands. Refer
to |:let-heredoc| for more information.
This form of the |:ruby| command is mainly useful for This form of the |:ruby| command is mainly useful for
including ruby code in vim scripts. including ruby code in vim scripts.

View File

@ -247,12 +247,12 @@ arguments separated by " " (space) instead of "\t" (tab).
:lua =jit.version :lua =jit.version
< <
*:lua-heredoc* *:lua-heredoc*
:lua << [endmarker] :lua << [trim] [{endmarker}]
{script} {script}
{endmarker} {endmarker}
Executes Lua script {script} from within Vimscript. {endmarker} must NOT Executes Lua script {script} from within Vimscript. You can omit
be preceded by whitespace. You can omit [endmarker] after the "<<" and use [endmarker] after the "<<" and use a dot "." after {script} (similar to
a dot "." after {script} (similar to |:append|, |:insert|). |:append|, |:insert|). Refer to |let-heredoc| for more information.
Example: >vim Example: >vim
function! CurrentLineInfo() function! CurrentLineInfo()

View File

@ -2571,11 +2571,18 @@ void ex_function(exarg_T *eap)
&& (!ASCII_ISALPHA(p[2]) || p[2] == 's')))) { && (!ASCII_ISALPHA(p[2]) || p[2] == 's')))) {
// ":python <<" continues until a dot, like ":append" // ":python <<" continues until a dot, like ":append"
p = skipwhite(arg + 2); p = skipwhite(arg + 2);
if (strncmp(p, "trim", 4) == 0) {
// Ignore leading white space.
p = skipwhite(p + 4);
heredoc_trimmed = xstrnsave(theline, (size_t)(skipwhite(theline) - theline));
}
if (*p == NUL) { if (*p == NUL) {
skip_until = xstrdup("."); skip_until = xstrdup(".");
} else { } else {
skip_until = xstrdup(p); skip_until = xstrnsave(p, (size_t)(skiptowhite(p) - p));
} }
do_concat = false;
is_heredoc = true;
} }
// Check for ":let v =<< [trim] EOF" // Check for ":let v =<< [trim] EOF"

View File

@ -155,14 +155,19 @@ char *eval_all_expr_in_str(char *str)
/// marker, then the leading indentation before the lines (matching the /// marker, then the leading indentation before the lines (matching the
/// indentation in the 'cmd' line) is stripped. /// indentation in the 'cmd' line) is stripped.
/// ///
/// When getting lines for an embedded script (e.g. python, lua, perl, ruby,
/// tcl, mzscheme), "script_get" is set to true. In this case, if the marker is
/// missing, then '.' is accepted as a marker.
///
/// @return a List with {lines} or NULL on failure. /// @return a List with {lines} or NULL on failure.
static list_T *heredoc_get(exarg_T *eap, char *cmd) list_T *heredoc_get(exarg_T *eap, char *cmd, bool script_get)
{ {
char *marker; char *marker;
char *p; char *p;
int marker_indent_len = 0; int marker_indent_len = 0;
int text_indent_len = 0; int text_indent_len = 0;
char *text_indent = NULL; char *text_indent = NULL;
char dot[] = ".";
if (eap->getline == NULL) { if (eap->getline == NULL) {
emsg(_("E991: cannot use =<< here")); emsg(_("E991: cannot use =<< here"));
@ -214,8 +219,14 @@ static list_T *heredoc_get(exarg_T *eap, char *cmd)
return NULL; return NULL;
} }
} else { } else {
emsg(_("E172: Missing marker")); // When getting lines for an embedded script, if the marker is missing,
return NULL; // accept '.' as the marker.
if (script_get) {
marker = dot;
} else {
emsg(_("E172: Missing marker"));
return NULL;
}
} }
char *theline = NULL; char *theline = NULL;
@ -353,7 +364,7 @@ void ex_let(exarg_T *eap)
if (expr[0] == '=' && expr[1] == '<' && expr[2] == '<') { if (expr[0] == '=' && expr[1] == '<' && expr[2] == '<') {
// HERE document // HERE document
list_T *l = heredoc_get(eap, expr + 3); list_T *l = heredoc_get(eap, expr + 3, false);
if (l != NULL) { if (l != NULL) {
tv_list_set_ret(&rettv, l); tv_list_set_ret(&rettv, l);
if (!eap->skip) { if (!eap->skip) {

View File

@ -29,6 +29,7 @@
#include "nvim/edit.h" #include "nvim/edit.h"
#include "nvim/eval.h" #include "nvim/eval.h"
#include "nvim/eval/typval.h" #include "nvim/eval/typval.h"
#include "nvim/eval/vars.h"
#include "nvim/ex_cmds.h" #include "nvim/ex_cmds.h"
#include "nvim/ex_cmds_defs.h" #include "nvim/ex_cmds_defs.h"
#include "nvim/ex_docmd.h" #include "nvim/ex_docmd.h"
@ -4561,39 +4562,37 @@ bool is_in_cmdwin(void)
char *script_get(exarg_T *const eap, size_t *const lenp) char *script_get(exarg_T *const eap, size_t *const lenp)
FUNC_ATTR_NONNULL_ALL FUNC_ATTR_WARN_UNUSED_RESULT FUNC_ATTR_MALLOC FUNC_ATTR_NONNULL_ALL FUNC_ATTR_WARN_UNUSED_RESULT FUNC_ATTR_MALLOC
{ {
const char *const cmd = eap->arg; char *cmd = eap->arg;
if (cmd[0] != '<' || cmd[1] != '<' || eap->getline == NULL) { if (cmd[0] != '<' || cmd[1] != '<' || eap->getline == NULL) {
*lenp = strlen(eap->arg); *lenp = strlen(eap->arg);
return eap->skip ? NULL : xmemdupz(eap->arg, *lenp); return eap->skip ? NULL : xmemdupz(eap->arg, *lenp);
} }
cmd += 2;
garray_T ga = { .ga_data = NULL, .ga_len = 0 }; garray_T ga = { .ga_data = NULL, .ga_len = 0 };
list_T *const l = heredoc_get(eap, cmd, true);
if (l == NULL) {
return NULL;
}
if (!eap->skip) { if (!eap->skip) {
ga_init(&ga, 1, 0x400); ga_init(&ga, 1, 0x400);
} }
const char *const end_pattern = (cmd[2] != NUL ? skipwhite(cmd + 2) : "."); TV_LIST_ITER_CONST(l, li, {
while (true) {
char *const theline = eap->getline(eap->cstack->cs_looplevel > 0 ? -1 : NUL, eap->cookie, 0,
true);
if (theline == NULL || strcmp(end_pattern, theline) == 0) {
xfree(theline);
break;
}
if (!eap->skip) { if (!eap->skip) {
ga_concat(&ga, theline); ga_concat(&ga, tv_get_string(TV_LIST_ITEM_TV(li)));
ga_append(&ga, '\n'); ga_append(&ga, '\n');
} }
xfree(theline); });
}
*lenp = (size_t)ga.ga_len; // Set length without trailing NUL. *lenp = (size_t)ga.ga_len; // Set length without trailing NUL.
if (!eap->skip) { if (!eap->skip) {
ga_append(&ga, NUL); ga_append(&ga, NUL);
} }
tv_list_free(l);
return (char *)ga.ga_data; return (char *)ga.ga_data;
} }

View File

@ -224,11 +224,11 @@ endfunc
func Test_stdio() func Test_stdio()
throw 'skipped: TODO: ' throw 'skipped: TODO: '
redir =>l:out redir =>l:out
perl <<EOF perl << trim EOF
VIM::Msg("&VIM::Msg"); VIM::Msg("&VIM::Msg");
print "STDOUT"; print "STDOUT";
print STDERR "STDERR"; print STDERR "STDERR";
EOF EOF
redir END redir END
call assert_equal(['&VIM::Msg', 'STDOUT', 'STDERR'], split(l:out, "\n")) call assert_equal(['&VIM::Msg', 'STDOUT', 'STDERR'], split(l:out, "\n"))
endfunc endfunc
@ -305,7 +305,13 @@ END
perl << perl <<
VIM::DoCommand('let s ..= "B"') VIM::DoCommand('let s ..= "B"')
. .
call assert_equal('AB', s) perl << trim END
VIM::DoCommand('let s ..= "C"')
END
perl << trim
VIM::DoCommand('let s ..= "D"')
.
call assert_equal('ABCD', s)
endfunc endfunc
" vim: shiftwidth=2 sts=2 expandtab " vim: shiftwidth=2 sts=2 expandtab

View File

@ -171,3 +171,22 @@ func Test_Catch_Exception_Message()
call assert_match('^Vim(.*):.*RuntimeError: TEST$', v:exception ) call assert_match('^Vim(.*):.*RuntimeError: TEST$', v:exception )
endtry endtry
endfunc endfunc
" Test for various heredoc syntax
func Test_python_heredoc()
python << END
s='A'
END
python <<
s+='B'
.
python << trim END
s+='C'
END
python << trim
s+='D'
.
call assert_equal('ABCD', pyxeval('s'))
endfunc
" vim: shiftwidth=2 sts=2 expandtab

View File

@ -227,9 +227,11 @@ func Test_python3_opt_reset_local_to_global()
" Set the global and buffer-local option values and then clear the " Set the global and buffer-local option values and then clear the
" buffer-local option value. " buffer-local option value.
for opt in bopts for opt in bopts
py3 pyopt = vim.bindeval("opt") py3 << trim END
py3 vim.options[pyopt[0]] = pyopt[1] pyopt = vim.bindeval("opt")
py3 curbuf.options[pyopt[0]] = pyopt[2] vim.options[pyopt[0]] = pyopt[1]
curbuf.options[pyopt[0]] = pyopt[2]
END
exe "call assert_equal(opt[2], &" .. opt[0] .. ")" exe "call assert_equal(opt[2], &" .. opt[0] .. ")"
exe "call assert_equal(opt[1], &g:" .. opt[0] .. ")" exe "call assert_equal(opt[1], &g:" .. opt[0] .. ")"
exe "call assert_equal(opt[2], &l:" .. opt[0] .. ")" exe "call assert_equal(opt[2], &l:" .. opt[0] .. ")"
@ -247,9 +249,11 @@ func Test_python3_opt_reset_local_to_global()
\ ['sidescrolloff', 6, 12, -1], \ ['sidescrolloff', 6, 12, -1],
\ ['statusline', '%<%f', '%<%F', '']] \ ['statusline', '%<%f', '%<%F', '']]
for opt in wopts for opt in wopts
py3 pyopt = vim.bindeval("opt") py3 << trim
py3 vim.options[pyopt[0]] = pyopt[1] pyopt = vim.bindeval("opt")
py3 curwin.options[pyopt[0]] = pyopt[2] vim.options[pyopt[0]] = pyopt[1]
curwin.options[pyopt[0]] = pyopt[2]
.
exe "call assert_equal(opt[2], &" .. opt[0] .. ")" exe "call assert_equal(opt[2], &" .. opt[0] .. ")"
exe "call assert_equal(opt[1], &g:" .. opt[0] .. ")" exe "call assert_equal(opt[1], &g:" .. opt[0] .. ")"
exe "call assert_equal(opt[2], &l:" .. opt[0] .. ")" exe "call assert_equal(opt[2], &l:" .. opt[0] .. ")"
@ -263,4 +267,21 @@ func Test_python3_opt_reset_local_to_global()
close! close!
endfunc endfunc
" Test for various heredoc syntax
func Test_python3_heredoc()
python3 << END
s='A'
END
python3 <<
s+='B'
.
python3 << trim END
s+='C'
END
python3 << trim
s+='D'
.
call assert_equal('ABCD', pyxeval('s'))
endfunc
" vim: shiftwidth=2 sts=2 expandtab " vim: shiftwidth=2 sts=2 expandtab

View File

@ -15,10 +15,10 @@ endfunc
func Test_pyx() func Test_pyx()
redir => var redir => var
pyx << EOF pyx << trim EOF
import sys import sys
print(sys.version) print(sys.version)
EOF EOF
redir END redir END
call assert_match(s:py2pattern, split(var)[0]) call assert_match(s:py2pattern, split(var)[0])
endfunc endfunc
@ -79,3 +79,22 @@ func Test_Catch_Exception_Message()
call assert_match('^Vim(.*):.*RuntimeError: TEST$', v:exception ) call assert_match('^Vim(.*):.*RuntimeError: TEST$', v:exception )
endtry endtry
endfunc endfunc
" Test for various heredoc syntaxes
func Test_pyx2_heredoc()
pyx << END
result='A'
END
pyx <<
result+='B'
.
pyx << trim END
result+='C'
END
pyx << trim
result+='D'
.
call assert_equal('ABCD', pyxeval('result'))
endfunc
" vim: shiftwidth=2 sts=2 expandtab

View File

@ -15,10 +15,10 @@ endfunc
func Test_pyx() func Test_pyx()
redir => var redir => var
pyx << EOF pyx << trim EOF
import sys import sys
print(sys.version) print(sys.version)
EOF EOF
redir END redir END
call assert_match(s:py3pattern, split(var)[0]) call assert_match(s:py3pattern, split(var)[0])
endfunc endfunc
@ -79,3 +79,22 @@ func Test_Catch_Exception_Message()
call assert_match('^Vim(.*):.*RuntimeError: TEST$', v:exception ) call assert_match('^Vim(.*):.*RuntimeError: TEST$', v:exception )
endtry endtry
endfunc endfunc
" Test for various heredoc syntaxes
func Test_pyx3_heredoc()
pyx << END
result='A'
END
pyx <<
result+='B'
.
pyx << trim END
result+='C'
END
pyx << trim
result+='D'
.
call assert_equal('ABCD', pyxeval('result'))
endfunc
" vim: shiftwidth=2 sts=2 expandtab

View File

@ -341,11 +341,11 @@ func Test_ruby_Vim_evaluate_list()
call setline(line('$'), ['2 line 2']) call setline(line('$'), ['2 line 2'])
ruby Vim.command("normal /^2\n") ruby Vim.command("normal /^2\n")
let l = ["abc", "def"] let l = ["abc", "def"]
ruby << EOF ruby << trim EOF
curline = $curbuf.line_number curline = $curbuf.line_number
l = Vim.evaluate("l"); l = Vim.evaluate("l");
$curbuf.append(curline, l.join("|")) $curbuf.append(curline, l.join("|"))
EOF EOF
normal j normal j
.rubydo $_ = $_.gsub(/\|/, '/') .rubydo $_ = $_.gsub(/\|/, '/')
call assert_equal('abc/def', getline('$')) call assert_equal('abc/def', getline('$'))
@ -414,4 +414,21 @@ func Test_rubyeval_error()
call assert_fails('call rubyeval("(")') call assert_fails('call rubyeval("(")')
endfunc endfunc
" Test for various heredoc syntax
func Test_ruby_heredoc()
ruby << END
Vim.command('let s = "A"')
END
ruby <<
Vim.command('let s ..= "B"')
.
ruby << trim END
Vim.command('let s ..= "C"')
END
ruby << trim
Vim.command('let s ..= "D"')
.
call assert_equal('ABCD', s)
endfunc
" vim: shiftwidth=2 sts=2 expandtab " vim: shiftwidth=2 sts=2 expandtab