diff options
-rw-r--r-- | src/edit.c | 2 | ||||
-rw-r--r-- | src/normal.c | 4 | ||||
-rw-r--r-- | src/version.c | 2 |
3 files changed, 5 insertions, 3 deletions
diff --git a/src/edit.c b/src/edit.c index 51a12b330..8e6ca5da9 100644 --- a/src/edit.c +++ b/src/edit.c @@ -1025,7 +1025,7 @@ doESCkey: case Ctrl_Z: /* suspend when 'insertmode' set */ if (!p_im) goto normalchar; /* insert CTRL-Z as normal char */ - stuffReadbuff((char_u *)":st\r"); + do_cmdline_cmd((char_u *)"stop"); c = Ctrl_O; /*FALLTHROUGH*/ diff --git a/src/normal.c b/src/normal.c index 3456b73be..8724553a9 100644 --- a/src/normal.c +++ b/src/normal.c @@ -2982,9 +2982,9 @@ do_mouse( if (State & INSERT) stuffcharReadbuff(Ctrl_O); if (curwin->w_llist_ref == NULL) /* quickfix window */ - stuffReadbuff((char_u *)":.cc\n"); + do_cmdline_cmd((char_u *)".cc"); else /* location list window */ - stuffReadbuff((char_u *)":.ll\n"); + do_cmdline_cmd((char_u *)".ll"); got_click = FALSE; /* ignore drag&release now */ } #endif diff --git a/src/version.c b/src/version.c index e350e9c11..c2a80dc5f 100644 --- a/src/version.c +++ b/src/version.c @@ -765,6 +765,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 208, +/**/ 207, /**/ 206, |