Skip to content

Commit 7be33eb

Browse files
author
Kartik Raj
authored
Add more shell integration sequences to check for (#22911)
Based on discussion with Daniel For #22440
1 parent 6838ccf commit 7be33eb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/client/terminals/envCollectionActivation/shellIntegrationService.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@ export class ShellIntegrationService implements IShellIntegrationService {
5757
}
5858
this.appShell.onDidWriteTerminalData(
5959
(e) => {
60-
if (e.data.includes('\x1b]633;A\x07')) {
60+
traceVerbose(e.data); // Log this temporarily for analysis
61+
if (e.data.includes('\x1b]633;A\x07') || e.data.includes('\x1b]133;A\x07')) {
6162
let { shell } = this.appEnvironment;
6263
if ('shellPath' in e.terminal.creationOptions && e.terminal.creationOptions.shellPath) {
6364
shell = e.terminal.creationOptions.shellPath;

0 commit comments

Comments
 (0)