diff options
| author | Johannes Altmanninger <aclopte@gmail.com> | 2025-03-23 16:16:24 +0100 |
|---|---|---|
| committer | Maxime Coste <mawww@kakoune.org> | 2025-03-24 08:28:55 +1100 |
| commit | 6fa99d403c0d5884610fd23e59a2fc10ed258a9a (patch) | |
| tree | 8b067f7ae821fcfb42f4bda0fb60a359518a9c77 /src/client.cc | |
| parent | 43782d0ca11b4eff14ff3ab8274de20140f3567c (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/client.cc')
| -rw-r--r-- | src/client.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client.cc b/src/client.cc index 2fa8e8fb..da4ed9f0 100644 --- a/src/client.cc +++ b/src/client.cc @@ -112,7 +112,7 @@ bool Client::process_pending_inputs() else { context().ensure_cursor_visible = true; - m_input_handler.handle_key(key, false); + m_input_handler.handle_key(key, /*synthesized=*/false); } context().hooks().run_hook(Hook::RawKey, to_string(key), context()); |
