Files
Portfolio/src/app/core/commands/command-ids.ts
Antonio Ledebuhr 162bd790da Replace the modal command palette with a nonmodal terminal dock.
Ctrl+K now opens a corner session with a parsed navigate grammar, persistent history, and no page lock. Unknown targets stay on a closed alias table and never become URLs.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-08-26 12:52:22 +02:00

11 lines
206 B
TypeScript

export type CommandId = 'help' | 'history' | 'clear' | 'brew' | 'rev' | 'navigate';
export const COMMAND_IDS: readonly CommandId[] = [
'help',
'history',
'clear',
'brew',
'rev',
'navigate',
];