diff --git a/src/env/node/git/git.ts b/src/env/node/git/git.ts index 839ee821a8454..7fef6401eca98 100644 --- a/src/env/node/git/git.ts +++ b/src/env/node/git/git.ts @@ -2073,8 +2073,9 @@ export class Git { const terminal = ensureGitTerminal(); terminal.show(false); - // Sends ansi codes to remove any text on the current input line - terminal.sendText('\x1b[2K\x1b', false); + // Removing this as this doesn't seem to work on bash + // // Sends ansi codes to remove any text on the current input line + // terminal.sendText('\x1b[2K\x1b', false); terminal.sendText(text, options?.execute ?? false); }