Skip to content

Commit 2f94c94

Browse files
committed
Remove details about sequences from shellIntegration API
Fixes microsoft#208639
1 parent e857eec commit 2f94c94

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

src/vscode-dts/vscode.proposed.terminalShellIntegration.d.ts

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,17 @@ declare module 'vscode' {
2121
* - It may be undefined or the empty string until {@link onDidEndTerminalShellExecution} is
2222
* fired.
2323
* - It may be inaccurate initially if the command line is pulled from the buffer directly
24-
* via the [`OSC 633/133 ; A`, `B` and `C` sequences](https://code.visualstudio.com/docs/terminal/shell-integration#_vs-code-custom-sequences-osc-633-st).
24+
* via the shell integration prompt markers.
2525
* - It may contain line continuation characters and/or parts of the right prompt.
26-
* - It may be inaccurate if the shell integration does not support command line reporting
27-
* via the [`OSC 633 ; E` sequence](https://code.visualstudio.com/docs/terminal/shell-integration#_vs-code-custom-sequences-osc-633-st).
26+
* - It may be inaccurate if the shell integration does not support command line reporting.
2827
*/
2928
readonly commandLine: string | undefined;
3029

3130
/**
3231
* The working directory that was reported by the shell when this command executed. This
3332
* will be a {@link Uri} if the string reported by the shell can reliably be mapped to the
3433
* connected machine. This requires the shell integration to support working directory
35-
* reporting via the [`OSC 633 ; P`](https://code.visualstudio.com/docs/terminal/shell-integration#_vs-code-custom-sequences-osc-633-st)
36-
* or `OSC 1337 ; CurrentDir=<Cwd> ST` sequences.
34+
* reporting.
3735
*/
3836
readonly cwd: Uri | string | undefined;
3937

0 commit comments

Comments
 (0)