aboutsummaryrefslogtreecommitdiff
path: root/src/nvim
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2017-09-02 11:35:48 +0200
committerJustin M. Keyes <justinkz@gmail.com>2017-09-05 15:01:06 +0200
commit6c53c3ee55991d9b1ea61a8dc443038b478ca92a (patch)
treec3d752866b1c875db2d2329468d1cb4182f28e48 /src/nvim
parentd47b538f39e3e9700a18f1cd72e561086f62d7f3 (diff)
downloadrneovim-6c53c3ee55991d9b1ea61a8dc443038b478ca92a.tar.gz
rneovim-6c53c3ee55991d9b1ea61a8dc443038b478ca92a.tar.bz2
rneovim-6c53c3ee55991d9b1ea61a8dc443038b478ca92a.zip
eventloop: restore redraw in cmdline K_EVENT handler
Restores behavior from commit: 02e86ef04cc1
Diffstat (limited to 'src/nvim')
-rw-r--r--src/nvim/ex_getln.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nvim/ex_getln.c b/src/nvim/ex_getln.c
index 9bfa9e22df..fd7ad7a4b5 100644
--- a/src/nvim/ex_getln.c
+++ b/src/nvim/ex_getln.c
@@ -441,7 +441,8 @@ static int command_line_execute(VimState *state, int key)
if (s->c == K_EVENT) {
multiqueue_process_events(main_loop.events);
- return command_line_not_changed(s);
+ redrawcmdline();
+ return 1;
}
if (KeyTyped) {