( overrides: KeymapOverrides | null | undefined, id: KeymapId, )
| 1464 | } |
| 1465 | |
| 1466 | export function getKeymapDisplay( |
| 1467 | overrides: KeymapOverrides | null | undefined, |
| 1468 | id: KeymapId, |
| 1469 | ): string { |
| 1470 | const definition = getKeymapDefinition(id); |
| 1471 | return formatKeymapBinding(getKeymapBinding(overrides, id), definition.kind); |
| 1472 | } |
| 1473 | |
| 1474 | export function describeCurrentBinding( |
| 1475 | overrides: KeymapOverrides | null | undefined, |
no test coverage detected