diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-08-23 18:12:28 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-23 18:12:28 +0800 |
commit | df4709ddf6d1ed524adae9373ecb762b9db11814 (patch) | |
tree | d65ac06e9560138c20f09d6f8269b4d9e2d29713 /src/nvim/path.c | |
parent | 42e9fe7d958e0ba025034c330d8e29293d828b60 (diff) | |
parent | d459b6687704b7d1f230d0b14c0d59f87cf5f67d (diff) | |
download | rneovim-df4709ddf6d1ed524adae9373ecb762b9db11814.tar.gz rneovim-df4709ddf6d1ed524adae9373ecb762b9db11814.tar.bz2 rneovim-df4709ddf6d1ed524adae9373ecb762b9db11814.zip |
Merge pull request #19905 from zeertzjq/vim-8.2.4726
vim-patch:8.2.{4726,4740,4741,4749,4841,4842}: expand('<script>')
Diffstat (limited to 'src/nvim/path.c')
-rw-r--r-- | src/nvim/path.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/path.c b/src/nvim/path.c index 1500254de5..d50ef87b62 100644 --- a/src/nvim/path.c +++ b/src/nvim/path.c @@ -2135,7 +2135,8 @@ int expand_wildcards_eval(char_u **pat, int *num_file, char ***file, int flags) if (*exp_pat == '%' || *exp_pat == '#' || *exp_pat == '<') { emsg_off++; - eval_pat = eval_vars((char_u *)exp_pat, (char_u *)exp_pat, &usedlen, NULL, &ignored_msg, NULL); + eval_pat = eval_vars((char_u *)exp_pat, (char_u *)exp_pat, &usedlen, NULL, &ignored_msg, NULL, + true); emsg_off--; if (eval_pat != NULL) { exp_pat = (char *)concat_str(eval_pat, (char_u *)exp_pat + usedlen); |