0

After update my Visual Studio Code to Version 1.60 I am trying to insert GitBash as a terminal option. This is my settings.json:

{
  "terminal.integrated.profiles.windows": {
  "PowerShell": {
      "source": "PowerShell",
      "icon": "terminal-powershell"
    },
    "CommandPrompt": {
        "path": [
            "${env:windir}\\Sysnative\\cmd.exe",
            "${env:windir}\\System32\\cmd.exe"
        ],
        "args": [],
        "icon": "terminal-cmd"
    },
    "GitBash": {
        "path": ["C:\\Program Files\\Git\\bin\\bash.exe"],
        "icon": "terminal-bash"
    }
},
"terminal.integrated.defaultProfile.windows": "GitBash",
}

But it seems that my configuration is not recognized. Only PowerShell is available as integrated terminal.

https://i.stack.imgur.com/UJL7A.png

What's wrong? With Version 1.50 and "terminal.integrated.shell.windows" it worked for a long time.

Ralf L.
  • 1
  • 1

0 Answers0