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/main.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/main.cc')
| -rw-r--r-- | src/main.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cc b/src/main.cc index e95725ec..78318b5b 100644 --- a/src/main.cc +++ b/src/main.cc @@ -997,7 +997,7 @@ int run_filter(StringView keystr, ConstArrayView<StringView> files, bool quiet, }; for (auto& key : keys) - input_handler.handle_key(key, true); + input_handler.handle_key(key); } catch (runtime_error& err) { |
