diff options
author | zeertzjq <zeertzjq@outlook.com> | 2022-12-04 10:32:20 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-04 10:32:20 +0800 |
commit | a0dd663c2d321ce107aa07005aa01b9c341c5df2 (patch) | |
tree | 32295d58a80f90a2d3b1d66d9034c7bd2fc4a093 /src/nvim/cmdexpand.c | |
parent | fba0562723a1af143c9e9509920d03d8231b8bf7 (diff) | |
parent | 9476dd2f923d9e5d86237836131f67024613308f (diff) | |
download | rneovim-a0dd663c2d321ce107aa07005aa01b9c341c5df2.tar.gz rneovim-a0dd663c2d321ce107aa07005aa01b9c341c5df2.tar.bz2 rneovim-a0dd663c2d321ce107aa07005aa01b9c341c5df2.zip |
Merge pull request #21279 from zeertzjq/vim-8.2.2182
vim-patch:8.2.{2182,2295,3265,3292}: search fixes
Diffstat (limited to 'src/nvim/cmdexpand.c')
-rw-r--r-- | src/nvim/cmdexpand.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/cmdexpand.c b/src/nvim/cmdexpand.c index f1231908c7..9619c81636 100644 --- a/src/nvim/cmdexpand.c +++ b/src/nvim/cmdexpand.c @@ -1505,7 +1505,7 @@ static const char *set_context_by_cmdname(const char *cmd, cmdidx_T cmdidx, cons arg = (const char *)skipwhite(skiptowhite(arg)); if (*arg != NUL) { xp->xp_context = EXPAND_NOTHING; - arg = (const char *)skip_regexp((char *)arg + 1, (uint8_t)(*arg), p_magic); + arg = (const char *)skip_regexp((char *)arg + 1, (uint8_t)(*arg), magic_isset()); } } return (const char *)find_nextcmd(arg); @@ -1544,7 +1544,7 @@ static const char *set_context_by_cmdname(const char *cmd, cmdidx_T cmdidx, cons if (delim) { // Skip "from" part. arg++; - arg = (const char *)skip_regexp((char *)arg, delim, p_magic); + arg = (const char *)skip_regexp((char *)arg, delim, magic_isset()); } // Skip "to" part. while (arg[0] != NUL && (uint8_t)arg[0] != delim) { @@ -2458,7 +2458,7 @@ static int ExpandFromContext(expand_T *xp, char *pat, int *num_file, char ***fil return nlua_expand_pat(xp, pat, num_file, file); } - regmatch.regprog = vim_regcomp(pat, p_magic ? RE_MAGIC : 0); + regmatch.regprog = vim_regcomp(pat, magic_isset() ? RE_MAGIC : 0); if (regmatch.regprog == NULL) { return FAIL; } |