vscode设置默认shell

前端之家收集整理的这篇文章主要介绍了vscode设置默认shell前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

在vscode中,可以通过 Ctrl+反引号快捷键来调出终端面板,如下图:

其中的shell(上图右下圈红部分)是可以设置的,
文件 -> 首选项 -> 设置中打开,在用户设置中添加如下配置项:

// "terminal.integrated.shell.windows": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe",
// "terminal.integrated.shell.windows": "C:\\Windows\\System32\\cmd.exe",
"terminal.integrated.shell.windows": "D:\\soft\\git\\bin\\bash.exe"

powershell,cmd,和bash(我这里安装了git,所以可以如上设置)我都试过,都可以用的.

这样一来,就可以放弃难用的cmd了.

欢迎补充指正!

原文链接:https://www.f2er.com/bash/389144.html

猜你在找的Bash相关文章