You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/vscode-dts/vscode.proposed.terminalShellIntegration.d.ts
+3-5Lines changed: 3 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -21,19 +21,17 @@ declare module 'vscode' {
21
21
* - It may be undefined or the empty string until {@link onDidEndTerminalShellExecution} is
22
22
* fired.
23
23
* - 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.
25
25
* - 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.
28
27
*/
29
28
readonlycommandLine: string|undefined;
30
29
31
30
/**
32
31
* The working directory that was reported by the shell when this command executed. This
33
32
* will be a {@link Uri} if the string reported by the shell can reliably be mapped to the
34
33
* 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)
0 commit comments