diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-12-30 08:27:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-30 08:27:56 +0100 |
commit | 00af06b3728e16155e08833e7e7708c495f500de (patch) | |
tree | 2d90915886e5643d72d1733733fc02533f50c920 /src/nvim/edit.c | |
parent | 34a59242a0d42687a49119cca590e7b4203496ef (diff) | |
parent | 5e1cad6d3378398c059e1a7144e1310b7bcb2398 (diff) | |
download | rneovim-00af06b3728e16155e08833e7e7708c495f500de.tar.gz rneovim-00af06b3728e16155e08833e7e7708c495f500de.tar.bz2 rneovim-00af06b3728e16155e08833e7e7708c495f500de.zip |
Merge #11616 from janlazo/vim-8.0.1491
vim-patch:8.0.{1356,1491,1495,1522,1538,1540},8.1.{554,670,1300,1303,1875,2377}
Diffstat (limited to 'src/nvim/edit.c')
-rw-r--r-- | src/nvim/edit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/edit.c b/src/nvim/edit.c index eecea03a19..cb5c7023d7 100644 --- a/src/nvim/edit.c +++ b/src/nvim/edit.c @@ -638,7 +638,7 @@ static int insert_check(VimState *state) static int insert_execute(VimState *state, int key) { - if (key == K_IGNORE) { + if (key == K_IGNORE || key == K_NOP) { return -1; // get another key } InsertState *s = (InsertState *)state; |