Skip to content

Commit

Permalink
fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
meganrogge committed Jan 6, 2022
1 parent 8b423f0 commit 01112a1
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/vs/platform/terminal/node/ptyService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -751,7 +751,7 @@ class XtermSerializer implements ITerminalSerializer {
}
this._xterm.parser.registerOscHandler(133, (data => this._handleShellIntegration(data)));
if (this._shellIntegration) {
this._xterm.writeln('\033]133;E\007');
this._xterm.writeln('\x1b033]133;E\x1b007');
}
this.setUnicodeVersion(unicodeVersion);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,6 @@ export class NaiveCommandTrackerAddon extends CommandTrackerAddon {
}

handleIntegratedShellChange(event: { type: string; value: string; }): void {
throw new Error('Integrated shell change not supported');
}
}

Expand Down

0 comments on commit 01112a1

Please sign in to comment.