command-tooltip-keybind.ts 365 B

1234567891011
  1. type CommandKeybind = {
  2. keybindParts: (id: string) => string[]
  3. }
  4. export function reviewTooltipKeybind(command: CommandKeybind, _translate?: (key: string) => string) {
  5. return command.keybindParts("review.toggle")
  6. }
  7. export function newTabTooltipKeybind(command: CommandKeybind, _translate?: (key: string) => string) {
  8. return command.keybindParts("tab.new")
  9. }