aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ex_getln.c
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2016-05-22 21:53:43 +0200
committerBjörn Linse <bjorn.linse@gmail.com>2016-05-24 22:11:37 +0200
commit5cc87d4dabd02167117be7a978b5c8faaa975419 (patch)
treec8d54327f76fbc7422d3fec0a7e91f85c8da41ca /src/nvim/ex_getln.c
parent61e8adb25e6f37c3c9df0dd8f4fea5e23b62bacd (diff)
downloadrneovim-5cc87d4dabd02167117be7a978b5c8faaa975419.tar.gz
rneovim-5cc87d4dabd02167117be7a978b5c8faaa975419.tar.bz2
rneovim-5cc87d4dabd02167117be7a978b5c8faaa975419.zip
cmdline: Redraw the cmdline after processing events
vim-patch:7.4.1603 TODO(bfredl): if we allow events in HITRETURN and ASKMORE states, we need to add the necessary redraws as well.
Diffstat (limited to 'src/nvim/ex_getln.c')
-rw-r--r--src/nvim/ex_getln.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/nvim/ex_getln.c b/src/nvim/ex_getln.c
index a4e5a4dcd7..db21fddedb 100644
--- a/src/nvim/ex_getln.c
+++ b/src/nvim/ex_getln.c
@@ -359,6 +359,7 @@ static int command_line_execute(VimState *state, int key)
if (s->c == K_EVENT) {
queue_process_events(loop.events);
+ redrawcmdline();
return 1;
}