Problem: Vim9: bar not recognized after function call
Solution: Skip whitespace. (closes #6391)
RedrawAndEcho()
assert_match('did redraw', Screenline(&lines))
+ def CallAndEcho()
+ let x = 'did redraw'
+ reg_executing() | echo x
+ enddef
+ CallAndEcho()
+ assert_match('did redraw', Screenline(&lines))
+
if has('unix')
# bar in filter write command does not start new command
def WriteToShell()
static int included_patches[] =
{ /* Add new patch number below this line */
+/**/
+ 1130,
/**/
1129,
/**/
// drop the return value
generate_instr_drop(&cctx, ISN_DROP, 1);
- line = p;
+
+ line = skipwhite(p);
continue;
}
// CMD_let cannot happen, compile_assignment() above is used