Compare commits

...
Author SHA1 Message Date
0xtoshii 09724b41fb remove warning 2025-07-17 17:44:54 -07:00
+3 -1
View File
@@ -86,7 +86,9 @@ export class TerminalProcess extends EventEmitter<TerminalProcessEvents> {
private async runWithShellIntegration(terminal: vscode.Terminal, command: string): Promise<void> {
// Execute command and get stream
const stream = await this.executeCommandWithShellIntegration(terminal, command)
if (!stream) return
if (!stream) {
return
}
// Initialize state for stream processing
const streamState = this.initializeStreamState()