vim-patch:9.0.1516: cannot use special keys in <Cmd> mapping

Problem:    Cannot use special keys in <Cmd> mapping.
Solution:   Do allow for special keys in <Cmd> and <ScriptCmd> mappings.
            (closes vim/vim#12326)

3ab3a86481
This commit is contained in:
zeertzjq
2023-05-07 08:34:37 +08:00
parent 29c228dc10
commit 3233137813
3 changed files with 34 additions and 15 deletions

View File

@@ -5858,7 +5858,7 @@ void do_pending_operator(cmdarg_T *cap, int old_col, bool gui_yank)
if (repeat_cmdline == NULL) {
ResetRedobuff();
} else {
AppendToRedobuffLit(repeat_cmdline, -1);
AppendToRedobuffSpec(repeat_cmdline);
AppendToRedobuff(NL_STR);
XFREE_CLEAR(repeat_cmdline);
}