summaryrefslogtreecommitdiff
path: root/src/client.cc
diff options
context:
space:
mode:
authorMaxime Coste <mawww@kakoune.org>2024-07-22 17:43:37 +1000
committerMaxime Coste <mawww@kakoune.org>2024-07-22 20:22:14 +1000
commite938d724f16ef06cbc97a4fedc20d56edf34e7f2 (patch)
treebc5828353bdc26259b59bf6eadf8e7bb08b9f062 /src/client.cc
parent6f562aa0add09092d390f7ea2691959490234ed0 (diff)
Handle word completion when recording macros
Make last insert and macro recording closer together, paving the way towards moving last insert to a register. Use a FunctionRef for insert completer key insertion support.
Diffstat (limited to 'src/client.cc')
-rw-r--r--src/client.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client.cc b/src/client.cc
index 6e5d082a..7cfea960 100644
--- a/src/client.cc
+++ b/src/client.cc
@@ -111,7 +111,7 @@ bool Client::process_pending_inputs()
else
{
context().ensure_cursor_visible = true;
- m_input_handler.handle_key(key);
+ m_input_handler.handle_key(key, false);
}
context().hooks().run_hook(Hook::RawKey, to_string(key), context());