From f4e3df817fd8868f552866487ff35107f92bba01 Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Thu, 17 Jul 2014 19:37:30 +0100 Subject: [PATCH] Clear status line on normal mode command --- src/input_handler.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/input_handler.cc b/src/input_handler.cc index d7946c29..6898bd45 100644 --- a/src/input_handler.cc +++ b/src/input_handler.cc @@ -91,6 +91,8 @@ public: } }); + context().print_status({}); // clear status line + if (key.modifiers == Key::Modifiers::None and isdigit(key.key)) m_count = m_count * 10 + key.key - '0'; else if (key == Key::Backspace)