(decodedCmd: string)
| 89 | } |
| 90 | |
| 91 | export function isClaudeCodeCommand(decodedCmd: string): boolean { |
| 92 | if (!decodedCmd) { |
| 93 | return false; |
| 94 | } |
| 95 | return ClaudeCodeRegex.test(normalizeCmd(decodedCmd)); |
| 96 | } |
| 97 | |
| 98 | function handleShellIntegrationCommandStart( |
| 99 | termWrap: TermWrap, |
no test coverage detected