diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-07-19 23:06:05 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-07-19 23:06:05 +0200 |
commit | b146e01a7e41bf5787a2b5ccc6c340ed6001f308 (patch) | |
tree | 7c3437e3b0f1f29c26ccf1926953085cc7f2b578 /src/normal.c | |
parent | 54c3fcd852f9d986f81547429e850b3364f058d6 (diff) | |
download | vim-git-b146e01a7e41bf5787a2b5ccc6c340ed6001f308.tar.gz |
patch 8.2.1253: CTRL-K in Insert mode gets <CursorHold> insertedv8.2.1253
Problem: CTRL-K in Insert mode gets <CursorHold> inserted. (Roland
Puntaier)
Solution: Do not reset did_cursorhold, restore it. (closes #6447)
Diffstat (limited to 'src/normal.c')
-rw-r--r-- | src/normal.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/normal.c b/src/normal.c index ae2c1f5e3..4a86e7560 100644 --- 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; |