summaryrefslogtreecommitdiff
path: root/src/normal.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/normal.cc')
-rw-r--r--src/normal.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/normal.cc b/src/normal.cc
index af4d5fb1..9f1d3de7 100644
--- a/src/normal.cc
+++ b/src/normal.cc
@@ -1601,7 +1601,7 @@ void replay_macro(Context& context, NormalParams params)
do
{
for (auto& key : keys)
- context.input_handler().handle_key(key);
+ context.input_handler().handle_key(key, true);
} while (--params.count > 0);
}
@@ -2073,7 +2073,7 @@ void exec_user_mappings(Context& context, NormalParams params)
ScopedEdition edition(context);
ScopedSelectionEdition selection_edition{context};
for (auto& key : context.keymaps().get_mapping_keys(key, KeymapMode::User))
- context.input_handler().handle_key(key);
+ context.input_handler().handle_key(key, true);
}, "user mapping",
build_autoinfo_for_mapping(context, KeymapMode::User, {}));
}