Skip to content

Commit 5bbd161

Browse files
committed
Add comment for char codes
1 parent a92a475 commit 5bbd161

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/vs/workbench/contrib/terminal/browser/media/shellIntegration-bash.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,9 +128,9 @@ __vsc_escape_value() {
128128
builtin printf -v val '%d' "'$byte"
129129
if (( val < 31 )); then
130130
builtin printf -v token '\\x%02x' "'$byte"
131-
elif (( val == 92 )); then
131+
elif (( val == 92 )); then # \
132132
token="\\\\"
133-
elif (( val == 59 )); then
133+
elif (( val == 59 )); then # ;
134134
token="\\x3b"
135135
else
136136
token="$byte"

0 commit comments

Comments
 (0)