From 6fa99d403c0d5884610fd23e59a2fc10ed258a9a Mon Sep 17 00:00:00 2001 From: Johannes Altmanninger Date: Sun, 23 Mar 2025 16:16:24 +0100 Subject: Default InputHandler::handle_key() synthesized argument We have only one place where we handle actual keys typed by the user. --- src/input_handler.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/input_handler.cc') 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(¤t_mode()) != nullptr); } -- cgit v1.2.3