diff options
| author | Maxime Coste <frrrwww@gmail.com> | 2014-07-17 19:37:30 +0100 |
|---|---|---|
| committer | Maxime Coste <frrrwww@gmail.com> | 2014-07-17 19:37:30 +0100 |
| commit | f4e3df817fd8868f552866487ff35107f92bba01 (patch) | |
| tree | b74e4721b1770b5832d30f441881e6559c90d31a /src/input_handler.cc | |
| parent | 4a6a02af03a7f27e100792d820c9fc8da578a09c (diff) | |
Clear status line on normal mode command
Diffstat (limited to 'src/input_handler.cc')
| -rw-r--r-- | src/input_handler.cc | 2 |
1 files changed, 2 insertions, 0 deletions
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) |
