Clear status line on normal mode command

This commit is contained in:
Maxime Coste 2014-07-17 19:37:30 +01:00
parent 4a6a02af03
commit f4e3df817f

View File

@ -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)