Interface: Keybinding
Defined in: packages/sdk/src/types.ts:538
Binds a keyboard shortcut to a Command.
The command is invoked with no arguments — see Command.run for what that means for a command shared with a toolbar or context-menu surface.
Users can also bind any command themselves from Settings → Keyboard Shortcuts, whether or not the extension registered a default here, so this applies to every command an extension exposes.
Properties
id
id: string;Defined in: packages/sdk/src/types.ts:540
Unique id for this binding.
key
key: string;Defined in: packages/sdk/src/types.ts:546
Shortcut spec like "cmd+s", "ctrl+shift+s", "cmd+1", "cmd+shift+=". Parsed against KeyboardEvent.code for layout-stable letter/digit keys plus a small alias table for symbol keys (= → Equal, - → Minus, etc.).
command
command: string;Defined in: packages/sdk/src/types.ts:548
Id of the Command to invoke.
when?
optional when?: (ctx) => boolean;Defined in: packages/sdk/src/types.ts:550
Optional predicate against context keys; the binding is inert when false.
Parameters
ctx
Returns
boolean