Closed
Description
- VSCode Version: 1.9.0
- OS Version: Windows 10
Steps to Reproduce:
- Upgrade to VSCode 1.9.0
- Open Terminal
VSCode complains that my custom terminal settings in the workspace configuration are wrong after the update. It does not respect these anymore.
I need per project/workspace configuration because i use remote ssh terminals to work on the dev server. The dev server is different in every workspace.
This was perfectly working:
"terminal.integrated.shell.windows": "ssh.exe",
"terminal.integrated.shellArgs.windows": [
"myuser@myserver.com",
"-t",
"cd /data/project; bash --login"
],
Please tell me how i can downgrade to the working version until this is fixed.