(id: string)
| 430 | return formatKeybind(config, language.t) |
| 431 | }, |
| 432 | keybindParts(id: string) { |
| 433 | const config = keybindConfig(id) |
| 434 | return config ? formatKeybindParts(config, language.t) : [] |
| 435 | }, |
| 436 | show: showPalette, |
| 437 | keybinds(enabled: boolean) { |
| 438 | setStore("suspendCount", (count) => Math.max(0, count + (enabled ? -1 : 1))) |
nothing calls this directly
no test coverage detected