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 3164310 commit 4b0b1a4Copy full SHA for 4b0b1a4
src/vs/workbench/contrib/terminal/browser/media/shellIntegration-bash.sh
@@ -196,6 +196,11 @@ unset VSCODE_NONCE
196
builtin printf "\e]633;P;ContinuationPrompt=$(echo "$PS2" | sed 's/\x1b/\\\\x1b/g')\a"
197
198
__vsc_report_prompt() {
199
+ # HACK: Git bash is too slow at reporting the prompt, so skip for now
200
+ if [ "$__vsc_is_windows" = "1" ]; then
201
+ return
202
+ fi
203
+
204
# Expand the original PS1 similarly to how bash would normally
205
# See https://stackoverflow.com/a/37137981 for technique
206
if ((BASH_VERSINFO[0] >= 5 || (BASH_VERSINFO[0] == 4 && BASH_VERSINFO[1] >= 4))); then
0 commit comments