File size: 330 Bytes
776286d | 1 2 3 4 5 6 7 8 9 10 11 12 13 | import type { CommandRunInput } from 'claude-code'
/**
* The command as the person types it, with no arguments, in the fullscreen
* layout on a 160-column terminal.
*/
export const DIFF: CommandRunInput = {
command: 'diff',
args: '',
origin: { kind: 'composer' },
presentation: { isFullscreen: true, columns: 160 },
}
|