Skip to content

Commit

Permalink
Merge pull request #157635 from microsoft/tyriar/finalize_si_2
Browse files Browse the repository at this point in the history
Clarify 633 E sequence
  • Loading branch information
Tyriar committed Aug 9, 2022
2 parents 4d18682 + 47b3521 commit 41d9c49
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,10 @@ const enum VSCodeOscPt {
* with parsing out the command, such as conpty not guaranteeing the position of the sequence or
* the shell not guaranteeing that the entire command is even visible.
*
* The command line should escape ascii characters using the `\xAB` format, where AB are the
* The command line can escape ascii characters using the `\xAB` format, where AB are the
* hexadecimal representation of the character code (case insensitive), and escape the `\`
* character using `\\`. This is particularly important for new line and semi-colon.
* character using `\\`. It's required to escape semi-colon (`0x3b`) and characters 0x20 and
* below, this is particularly important for new line and semi-colon.
*
* Some examples:
*
Expand Down

0 comments on commit 41d9c49

Please sign in to comment.