@@ -814,6 +814,28 @@ void TerminalSession::onScrollOffsetChanged(vtbackend::ScrollOffset value)
814
814
}
815
815
// }}}
816
816
// {{{ Input Events
817
+
818
+ void handleAction (auto const & actions, auto eventType, auto callback)
819
+ {
820
+ if (eventType == KeyboardEventType::Press)
821
+ callback (*actions);
822
+ else if (eventType == KeyboardEventType::Repeat)
823
+ {
824
+ // filter out actions that are not repeatable
825
+ std::vector<actions::Action> tmpActions;
826
+ auto set = crispy::overloaded {
827
+ [&]([[maybe_unused]] actions::NonRepeatableActionConcept auto const & action) {},
828
+ [&](auto const & action) { tmpActions.emplace_back (action); },
829
+ };
830
+
831
+ for (auto const & action: *actions)
832
+ {
833
+ std::visit (set, action);
834
+ }
835
+ callback (tmpActions);
836
+ }
837
+ }
838
+
817
839
void TerminalSession::sendKeyEvent (Key key, Modifiers modifiers, KeyboardEventType eventType, Timestamp now)
818
840
{
819
841
inputLog ()(" Key {} event received: {} {}" , eventType, modifiers, key);
@@ -833,8 +855,7 @@ void TerminalSession::sendKeyEvent(Key key, Modifiers modifiers, KeyboardEventTy
833
855
if (auto const * actions =
834
856
config::apply (_config.inputMappings .value ().keyMappings , key, modifiers, matchModeFlags ()))
835
857
{
836
- if (eventType == KeyboardEventType::Press)
837
- executeAllActions (*actions);
858
+ handleAction (actions, eventType, [&](auto const & actions) { executeAllActions (actions); });
838
859
return ;
839
860
}
840
861
}
@@ -869,8 +890,7 @@ void TerminalSession::sendCharEvent(
869
890
config::apply (_config.inputMappings .value ().charMappings , value, modifiers, matchModeFlags ());
870
891
actions && !_terminal.inputHandler ().isEditingSearch ())
871
892
{
872
- if (eventType == KeyboardEventType::Press)
873
- executeAllActions (*actions);
893
+ handleAction (actions, eventType, [&](auto const & actions) { executeAllActions (actions); });
874
894
return ;
875
895
}
876
896
}
0 commit comments