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 0c4dc88 commit c9e9c71Copy full SHA for c9e9c71
2 files changed
src/fileio.c
@@ -9362,6 +9362,7 @@ apply_autocmds_group(
9362
#endif
9363
int did_save_redobuff = FALSE;
9364
save_redo_T save_redo;
9365
+ int save_KeyTyped = KeyTyped;
9366
9367
/*
9368
* Quickly return if there are no autocommands for this event or
@@ -9658,6 +9659,7 @@ apply_autocmds_group(
9658
9659
prof_child_exit(&wait_time);
9660
# endif
9661
9662
+ KeyTyped = save_KeyTyped;
9663
vim_free(fname);
9664
vim_free(sfname);
9665
--nesting; /* see matching increment above */
src/version.c
@@ -761,6 +761,8 @@ static char *(features[]) =
761
762
static int included_patches[] =
763
{ /* Add new patch number below this line */
764
+/**/
765
+ 1275,
766
/**/
767
1274,
768
0 commit comments