input: fix performable bindings

This commit is contained in:
Jeffrey C. Ollie
2025-12-22 17:48:04 -06:00
parent 931c6c71f2
commit 76c0bdf559

View File

@@ -2941,8 +2941,8 @@ fn maybeHandleBinding(
// actions perform.
var performed: bool = false;
for (actions) |action| {
if (self.performBindingAction(action)) |_| {
performed = true;
if (self.performBindingAction(action)) |performed_| {
performed = performed or performed_;
} else |err| {
log.info(
"key binding action failed action={t} err={}",