Microsoft/vscode
vscode shell 변경하기
구차니
2018. 9. 4. 10:26
ctrl-` 을 누르면 콘솔이 뜨고
ctrl-, 로 환경설정을 열어 powershell로 검색을 하면 (설치시에 이걸로 했으니.. ) 이렇게 나오고 이걸
// Windows에서 터미널이 사용하는 셸의 경로입니다. [셸 구성에 대한 자세한 정보](https://code.visualstudio.com/docs/editor/integrated-terminal#_configuration). "terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe" |
옆에 연필을 클릭해서 "설정에서 바꾸기" 하면
사용자 설정으로 복사되는데
이 양식대로 수정해주면된다.
{ "terminal.integrated.shell.windows": "C:\\Windows\\System32\\cmd.exe" } |
[링크 : https://code.visualstudio.com/docs/editor/integrated-terminal]