(id: string)
| 425 | run(id, source) |
| 426 | }, |
| 427 | keybind(id: string) { |
| 428 | const config = keybindConfig(id) |
| 429 | if (!config) return "" |
| 430 | return formatKeybind(config, language.t) |
| 431 | }, |
| 432 | keybindParts(id: string) { |
| 433 | const config = keybindConfig(id) |
| 434 | return config ? formatKeybindParts(config, language.t) : [] |
nothing calls this directly
no test coverage detected