We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2ce76a commit af043e1Copy full SHA for af043e1
2 files changed
src/getchar.c
@@ -2437,7 +2437,8 @@ handle_mapping(
2437
int is_plug_map = FALSE;
2438
2439
// If typehead starts with <Plug> then remap, even for a "noremap" mapping.
2440
- if (typebuf.tb_buf[typebuf.tb_off] == K_SPECIAL
+ if (typebuf.tb_len >= 3
2441
+ && typebuf.tb_buf[typebuf.tb_off] == K_SPECIAL
2442
&& typebuf.tb_buf[typebuf.tb_off + 1] == KS_EXTRA
2443
&& typebuf.tb_buf[typebuf.tb_off + 2] == KE_PLUG)
2444
is_plug_map = TRUE;
src/version.c
@@ -735,6 +735,8 @@ static char *(features[]) =
735
736
static int included_patches[] =
737
{ /* Add new patch number below this line */
738
+/**/
739
+ 24,
740
/**/
741
23,
742
0 commit comments