From ecac591cce23919059a5d93ed2e94541b1be99b5 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Tue, 5 Jan 2021 19:23:28 +0100 Subject: patch 8.2.2303: Vim9: backtick expansion doesn't work for :foldopen Problem: Vim9: backtick expansion doesn't work for :foldopen. Solution: Do recognize backtick expansion. (closes #7621) --- src/vim9compile.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/vim9compile.c') diff --git a/src/vim9compile.c b/src/vim9compile.c index cf5cff859..67307f8a9 100644 --- a/src/vim9compile.c +++ b/src/vim9compile.c @@ -7505,6 +7505,13 @@ compile_exec(char_u *line, exarg_T *eap, cctx_T *cctx) } } + if (eap->cmdidx == CMD_folddoopen || eap->cmdidx == CMD_folddoclosed) + { + // TODO: should only expand when appropriate for the command + eap->arg = skiptowhite(eap->arg); + has_expr = TRUE; + } + if (has_expr && (p = (char_u *)strstr((char *)eap->arg, "`=")) != NULL) { int count = 0; -- cgit v1.2.1