From b2741d2f976bc9779ebd0398af2a4b0144685285 Mon Sep 17 00:00:00 2001 From: Dax Raad Date: Tue, 14 Jul 2026 12:45:43 -0400 Subject: [PATCH] fix(tui): preserve legacy keybind lookup --- packages/tui/src/config/v1/keybind.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/tui/src/config/v1/keybind.ts b/packages/tui/src/config/v1/keybind.ts index df001878383..18c68a2ba4b 100644 --- a/packages/tui/src/config/v1/keybind.ts +++ b/packages/tui/src/config/v1/keybind.ts @@ -417,6 +417,9 @@ export type BindingLookupView = { readonly bindings: readonly Binding[] get(command: string): readonly Binding[] has(command: string): boolean + gather(name: string, commands: readonly string[]): readonly Binding[] + pick(name: string, commands: readonly string[]): Binding[] + omit(name: string, commands: readonly string[]): Binding[] } export function toBindingConfig(keybinds: Keybinds): BindingConfig {