diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2017-09-02 11:35:48 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2017-09-05 15:01:06 +0200 |
commit | 6c53c3ee55991d9b1ea61a8dc443038b478ca92a (patch) | |
tree | c3d752866b1c875db2d2329468d1cb4182f28e48 /src/nvim | |
parent | d47b538f39e3e9700a18f1cd72e561086f62d7f3 (diff) | |
download | rneovim-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.c | 3 |
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) { |