We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a92a475 commit 5bbd161Copy full SHA for 5bbd161
src/vs/workbench/contrib/terminal/browser/media/shellIntegration-bash.sh
@@ -128,9 +128,9 @@ __vsc_escape_value() {
128
builtin printf -v val '%d' "'$byte"
129
if (( val < 31 )); then
130
builtin printf -v token '\\x%02x' "'$byte"
131
- elif (( val == 92 )); then
+ elif (( val == 92 )); then # \
132
token="\\\\"
133
- elif (( val == 59 )); then
+ elif (( val == 59 )); then # ;
134
token="\\x3b"
135
else
136
token="$byte"
0 commit comments