# HG changeset patch # User Bram Moolenaar # Date 1595193304 -7200 # Node ID 5324acb43fea7283351fcc624f739501e2b107e4 # Parent 950ab917cd4dbe896df5374b44775131e9266a4a patch 8.2.1253: CTRL-K in Insert mode gets inserted Commit: https://github.com/vim/vim/commit/b146e01a7e41bf5787a2b5ccc6c340ed6001f308 Author: Bram Moolenaar Date: Sun Jul 19 23:06:05 2020 +0200 patch 8.2.1253: CTRL-K in Insert mode gets inserted Problem: CTRL-K in Insert mode gets inserted. (Roland Puntaier) Solution: Do not reset did_cursorhold, restore it. (closes #6447) diff --git a/src/normal.c b/src/normal.c --- a/src/normal.c +++ b/src/normal.c @@ -499,6 +499,7 @@ normal_cmd( #ifdef FEAT_EVAL int set_prevcount = FALSE; #endif + int save_did_cursorhold = did_cursorhold; CLEAR_FIELD(ca); // also resets ca.retval ca.oap = oap; @@ -1025,7 +1026,7 @@ getcount: out_flush(); #endif if (ca.cmdchar != K_IGNORE) - did_cursorhold = FALSE; + did_cursorhold = save_did_cursorhold; State = NORMAL; diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -755,6 +755,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1253, +/**/ 1252, /**/ 1251,