summaryrefslogtreecommitdiff
path: root/src/input_handler.cc
diff options
context:
space:
mode:
authorJohannes Altmanninger <aclopte@gmail.com>2025-03-23 16:16:24 +0100
committerMaxime Coste <mawww@kakoune.org>2025-03-24 08:28:55 +1100
commit6fa99d403c0d5884610fd23e59a2fc10ed258a9a (patch)
tree8b067f7ae821fcfb42f4bda0fb60a359518a9c77 /src/input_handler.cc
parent43782d0ca11b4eff14ff3ab8274de20140f3567c (diff)
Default InputHandler::handle_key() synthesized argument
We have only one place where we handle actual keys typed by the user.
Diffstat (limited to 'src/input_handler.cc')
-rw-r--r--src/input_handler.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input_handler.cc b/src/input_handler.cc
index 5ec3615b..b6539ce2 100644
--- a/src/input_handler.cc
+++ b/src/input_handler.cc
@@ -1612,7 +1612,7 @@ void InputHandler::repeat_last_insert()
push_mode(new InputModes::Insert(*this, m_last_insert.mode, m_last_insert.count, nullptr));
for (auto& key : m_last_insert.keys)
- handle_key(key, true);
+ handle_key(key);
kak_assert(dynamic_cast<InputModes::Normal*>(&current_mode()) != nullptr);
}