summaryrefslogtreecommitdiffstats
path: root/src/proto/getchar.pro
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2023-05-06 16:22:04 +0100
committerBram Moolenaar <Bram@vim.org>2023-05-06 16:22:04 +0100
commit3ab3a864814f903da8a158c01820e4fbe1013c08 (patch)
treebcbd4d89d2496377bf29c708306b4c45807dbe58 /src/proto/getchar.pro
parent03ff1c2dde7f15eca5c9baa6dafbda9b49bedc3b (diff)
patch 9.0.1516: cannot use special keys in <Cmd> mappingv9.0.1516
Problem: Cannot use special keys in <Cmd> mapping. Solution: Do allow for special keys in <Cmd> and <ScriptCmd> mappings. (closes #12326)
Diffstat (limited to 'src/proto/getchar.pro')
-rw-r--r--src/proto/getchar.pro1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/getchar.pro b/src/proto/getchar.pro
index 66c1e9b72d..01746cf700 100644
--- a/src/proto/getchar.pro
+++ b/src/proto/getchar.pro
@@ -11,6 +11,7 @@ void saveRedobuff(save_redo_T *save_redo);
void restoreRedobuff(save_redo_T *save_redo);
void AppendToRedobuff(char_u *s);
void AppendToRedobuffLit(char_u *str, int len);
+void AppendToRedobuffSpec(char_u *s);
void AppendCharToRedobuff(int c);
void AppendNumberToRedobuff(long n);
void stuffReadbuff(char_u *s);