Skip to content

Instantly share code, notes, and snippets.

@ivan-vilches
Created August 18, 2019 23:34
Show Gist options
  • Save ivan-vilches/6d976e977a3d3ae64d512aab8b1780a8 to your computer and use it in GitHub Desktop.
Save ivan-vilches/6d976e977a3d3ae64d512aab8b1780a8 to your computer and use it in GitHub Desktop.
cmder integration vscode
create a file inside of the cmder path in my vcase vscode.bat
@echo off
SET CMDER_ROOT=C:\cmder
"%CMDER_ROOT%\vendor\init.bat"
then in settings.json
{
"files.autoSave": "onFocusChange",
"terminal.integrated.shell.windows": "cmd.exe",
"terminal.integrated.env.windows": {
"CMDER_ROOT": "C:\\cmder"
},
"terminal.integrated.shellArgs.windows": [
"/k",
"C:\\cmder\\vscode.bat"
],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment