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 f986f71 commit 9d99f26Copy full SHA for 9d99f26
src/getchar.c
@@ -2731,6 +2731,11 @@ vgetorpeek(advance)
2731
}
2732
if (c < 0)
2733
continue; /* end of input script reached */
2734
+
2735
+ /* Allow mapping for just typed characters. When we get here c
2736
+ * is the number of extra bytes and typebuf.tb_len is 1. */
2737
+ for (n = 1; n <= c; ++n)
2738
+ typebuf.tb_noremap[typebuf.tb_off + n] = RM_YES;
2739
typebuf.tb_len += c;
2740
2741
/* buffer full, don't map */
src/version.c
@@ -734,6 +734,8 @@ static char *(features[]) =
734
735
static int included_patches[] =
736
{ /* Add new patch number below this line */
737
+/**/
738
+ 382,
739
/**/
740
381,
741
0 commit comments