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>
11 lines
206 B
TypeScript
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',
|
|
];
|