summaryrefslogtreecommitdiff
path: root/src/input_handler.cc
diff options
context:
space:
mode:
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 3c72e66d..30851fdb 100644
--- a/src/input_handler.cc
+++ b/src/input_handler.cc
@@ -1453,7 +1453,7 @@ void InputHandler::handle_key(Key key)
not m_context.keymaps_disabled())
{
ScopedSetBool disable_history{context().history_disabled()};
- for (auto& k : keymaps.get_mapping(key, keymap_mode))
+ for (auto& k : keymaps.get_mapping(key, keymap_mode).keys)
current_mode().handle_key(k);
}
else