summaryrefslogtreecommitdiff
path: root/src/input_handler.hh
diff options
context:
space:
mode:
authorJohannes Altmanninger <aclopte@gmail.com>2025-03-23 16:16:24 +0100
committerMaxime Coste <mawww@kakoune.org>2025-03-24 08:28:55 +1100
commit6fa99d403c0d5884610fd23e59a2fc10ed258a9a (patch)
tree8b067f7ae821fcfb42f4bda0fb60a359518a9c77 /src/input_handler.hh
parent43782d0ca11b4eff14ff3ab8274de20140f3567c (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/input_handler.hh')
-rw-r--r--src/input_handler.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input_handler.hh b/src/input_handler.hh
index 32e9bfca..0a908892 100644
--- a/src/input_handler.hh
+++ b/src/input_handler.hh
@@ -91,7 +91,7 @@ public:
Timer::Callback idle_callback = Timer::Callback{});
// process the given key
- void handle_key(Key key, bool synthesized);
+ void handle_key(Key key, bool synthesized = true);
void refresh_ifn();