Skip to content

Commit 41d9c49

Browse files
authored
Merge pull request microsoft#157635 from microsoft/tyriar/finalize_si_2
Clarify 633 E sequence
2 parents 4d18682 + 47b3521 commit 41d9c49

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/vs/platform/terminal/common/xterm/shellIntegrationAddon.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,10 @@ const enum VSCodeOscPt {
9292
* with parsing out the command, such as conpty not guaranteeing the position of the sequence or
9393
* the shell not guaranteeing that the entire command is even visible.
9494
*
95-
* The command line should escape ascii characters using the `\xAB` format, where AB are the
95+
* The command line can escape ascii characters using the `\xAB` format, where AB are the
9696
* hexadecimal representation of the character code (case insensitive), and escape the `\`
97-
* character using `\\`. This is particularly important for new line and semi-colon.
97+
* character using `\\`. It's required to escape semi-colon (`0x3b`) and characters 0x20 and
98+
* below, this is particularly important for new line and semi-colon.
9899
*
99100
* Some examples:
100101
*

0 commit comments

Comments
 (0)