I would like to integrate Cmder into my Vscode settings but on vscode April 2021 updates the commands "terminal.integrated.shell.windows" and "terminal.integrated.shellArgs.windows" were deprecated.
I'm using VS Code 64bit on Windows, and I tried to modify my settings.json
file, to create a Cmder profile as the integrated terminal as follows:
"terminal.integrated.profiles.windows": {
"Cmder": {
"source": "Cmder",
"overrideName": true,
"icon": "cmder",
"env": {"CMDER_ROOT": "C:\\tools\\cmder"},
"path": "%CMDER_ROOT%\\Cmder.exe",
"args": ["/K", "%CMDER_ROOT%\\vendor\\bin\\vscode_init.cmd"],
},
},
"terminal.integrated.defaultProfile.windows": "Cmder",
However, the integrated 'Cmder' profile doesn't work and for the command terminal.integrated.defaultProfile.windows": "Cmder",
appears that "This setting can be applied only in application user settings".
Anyone else trying to integrate Cmder as a integrated profile of the vscode terminal?
"terminal.integrated.profile.windows": "Cmder"
to"terminal.integrated.defaultProfile.windows": "Cmder"
– Fibriform