We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6838ccf commit 7be33ebCopy full SHA for 7be33eb
src/client/terminals/envCollectionActivation/shellIntegrationService.ts
@@ -57,7 +57,8 @@ export class ShellIntegrationService implements IShellIntegrationService {
57
}
58
this.appShell.onDidWriteTerminalData(
59
(e) => {
60
- if (e.data.includes('\x1b]633;A\x07')) {
+ traceVerbose(e.data); // Log this temporarily for analysis
61
+ if (e.data.includes('\x1b]633;A\x07') || e.data.includes('\x1b]133;A\x07')) {
62
let { shell } = this.appEnvironment;
63
if ('shellPath' in e.terminal.creationOptions && e.terminal.creationOptions.shellPath) {
64
shell = e.terminal.creationOptions.shellPath;
0 commit comments