@@ -731,7 +731,7 @@ export class ClineProvider
731731 this . getState ( ) . then (
732732 ( {
733733 terminalShellIntegrationTimeout = Terminal . defaultShellIntegrationTimeout ,
734- terminalShellIntegrationDisabled = false ,
734+ terminalShellIntegrationDisabled = true ,
735735 terminalCommandDelay = 0 ,
736736 terminalZshClearEolMark = true ,
737737 terminalZshOhMy = false ,
@@ -1885,7 +1885,7 @@ export class ClineProvider
18851885 terminalOutputLineLimit : terminalOutputLineLimit ?? 500 ,
18861886 terminalOutputCharacterLimit : terminalOutputCharacterLimit ?? DEFAULT_TERMINAL_OUTPUT_CHARACTER_LIMIT ,
18871887 terminalShellIntegrationTimeout : terminalShellIntegrationTimeout ?? Terminal . defaultShellIntegrationTimeout ,
1888- terminalShellIntegrationDisabled : terminalShellIntegrationDisabled ?? false ,
1888+ terminalShellIntegrationDisabled : terminalShellIntegrationDisabled ?? true ,
18891889 terminalCommandDelay : terminalCommandDelay ?? 0 ,
18901890 terminalPowershellCounter : terminalPowershellCounter ?? false ,
18911891 terminalZshClearEolMark : terminalZshClearEolMark ?? true ,
@@ -2106,7 +2106,7 @@ export class ClineProvider
21062106 stateValues . terminalOutputCharacterLimit ?? DEFAULT_TERMINAL_OUTPUT_CHARACTER_LIMIT ,
21072107 terminalShellIntegrationTimeout :
21082108 stateValues . terminalShellIntegrationTimeout ?? Terminal . defaultShellIntegrationTimeout ,
2109- terminalShellIntegrationDisabled : stateValues . terminalShellIntegrationDisabled ?? false ,
2109+ terminalShellIntegrationDisabled : stateValues . terminalShellIntegrationDisabled ?? true ,
21102110 terminalCommandDelay : stateValues . terminalCommandDelay ?? 0 ,
21112111 terminalPowershellCounter : stateValues . terminalPowershellCounter ?? false ,
21122112 terminalZshClearEolMark : stateValues . terminalZshClearEolMark ?? true ,
0 commit comments