Skip to content

Commit bd80627

Browse files
committed
remove padding spaces
1 parent c825fd0 commit bd80627

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
@@ -143,7 +143,7 @@ __vsc_escape_value() {
143143
}
144144

145145
# Send the IsWindows property if the environment looks like Windows
146-
__vsc_regex_environment = "^CYGWIN*|MINGW*|MSYS*"
146+
__vsc_regex_environment="^CYGWIN*|MINGW*|MSYS*"
147147
if [[ "$(uname -s)" =~ $__vsc_regex_environment ]]; then
148148
builtin printf '\e]633;P;IsWindows=True\a'
149149
__vsc_is_windows=1
@@ -153,7 +153,7 @@ fi
153153

154154
# Allow verifying $BASH_COMMAND doesn't have aliases resolved via history when the right HISTCONTROL
155155
# configuration is used
156-
__vsc_regex_histcontrol = ".*(erasedups|ignoreboth|ignoredups).*"
156+
__vsc_regex_histcontrol=".*(erasedups|ignoreboth|ignoredups).*"
157157
if [[ "$HISTCONTROL" =~ $__vsc_regex_histcontrol ]]; then
158158
__vsc_history_verify=0
159159
else

0 commit comments

Comments
 (0)