Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions extensions/terminal-suggest/src/terminalSuggestMain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ export const enum TerminalShellType {
Fish = 'fish',
Zsh = 'zsh',
PowerShell = 'pwsh',
Python = 'python'
Python = 'python',
GitBash = 'gitbash',
}

const isWindows = osIsWindows();
Expand Down Expand Up @@ -323,7 +324,7 @@ function getTerminalShellType(shellType: string | undefined): TerminalShellType
case 'bash':
return TerminalShellType.Bash;
case 'gitbash':
return TerminalShellType.Bash;
return TerminalShellType.GitBash;
case 'zsh':
return TerminalShellType.Zsh;
case 'pwsh':
Expand Down
Loading