From 6d44684857e0bf06234efc98a41b982e0210d195 Mon Sep 17 00:00:00 2001 From: Daniel Carl Date: Wed, 19 Nov 2014 21:43:00 +0100 Subject: [PATCH] Fixed duplicate shown showcmd in command mode. If was pressed within the inputbox, the showcmd section of the statusbar showed ^R^R instead of a single ^R. --- src/ex.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/ex.c b/src/ex.c index 1af4b06..4a34c5a 100644 --- a/src/ex.c +++ b/src/ex.c @@ -365,10 +365,6 @@ VbResult ex_keypress(int key) if (res == RESULT_COMPLETE) { info.cutbuf = 0; info.phase = PHASE_START; - } else { - /* if the key sequence is not complete show the already typed keys in - * status bar */ - map_showcmd(key); } return res; -- 2.20.1