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 2c65534 commit 7d41410Copy full SHA for 7d41410
2 files changed
src/normal.c
@@ -6944,6 +6944,16 @@ nv_esc(cmdarg_T *cap)
6944
}
6945
#endif
6946
6947
+#ifdef FEAT_CMDWIN
6948
+ else if (cmdwin_type != 0 && ex_normal_busy)
6949
+ {
6950
+ // When :normal runs out of characters while in the command line window
6951
+ // vgetorpeek() will return ESC. Exit the cmdline window to break the
6952
+ // loop.
6953
+ cmdwin_result = K_IGNORE;
6954
+ return;
6955
+ }
6956
+#endif
6957
6958
if (VIsual_active)
6959
{
src/version.c
@@ -750,6 +750,8 @@ static char *(features[]) =
750
751
static int included_patches[] =
752
{ /* Add new patch number below this line */
753
+/**/
754
+ 2548,
755
/**/
756
2547,
757
0 commit comments