( command: CommandDefinition, widths: MenuColumnWidths, recentCommands: Record<string, number> )
| 554 | } |
| 555 | |
| 556 | const formatMenuLine = ( |
| 557 | command: CommandDefinition, |
| 558 | widths: MenuColumnWidths, |
| 559 | recentCommands: Record<string, number> |
| 560 | ): string => [buildMenuDisplayLabel(command, widths, recentCommands), command.command, command.key].join('\t') |
| 561 | |
| 562 | const ensureFzfIsInstalled = (): void => { |
| 563 | const result = spawnSync('sh', ['-lc', 'command -v fzf'], { |
no test coverage detected