背景说明
VScode
默认情况下使用powershell
,在默写场景下对脚本的支持并不是很好,这里更换gitbash
进行替换
终端=>新终端
解决方案
配置文件
打开VScode软件,找到文件=>首选项=>设置,打开设置,在搜索框中输入terminal.integrated.shell.windows
在用户标签页面里面的下面有一个在settings.json中编辑,此时VScode打开了文件,可以进行编辑。
文件路径C:\Users\86183\AppData\Roaming\Code\User\settings.json
编辑配置
settings.json
原始配置文件如下
{
"iceworks.materialSources": [],
"iceworks.workspace": "d:\\workspace\\VSCode",
"extensions.ignoreRecommendations": true,
"workbench.iconTheme": "vscode-icons",
"guides.enabled": false,
"terminal.integrated.shell.windows": "C:\\WINDOWS\\System32\\WindowsPowerShell\\v1.0\\powershell.exe"
}
编辑后的配置文件如下
{
"iceworks.materialSources": [],
"iceworks.workspace": "d:\\workspace\\VSCode",
"extensions.ignoreRecommendations": true,
"workbench.iconTheme": "vscode-icons",
"guides.enabled": false,
"terminal.integrated.shell.windows": "D:\\soft\\install\\Git\\bin\\bash.exe"
}
这里配置git安装目录的bash.exe的绝对路径
重启软件
关闭VScode
软件并重新打开,按ctrl
+shift
+`` `键打开终端,看是否生效
86183@LAPTOP-CRFFK470 MINGW64 /d/workspace/VSCode/scriptx-front
$
终端切换
可以通过cmd
命令和bash
命令对终端进行切换
86183@LAPTOP-CRFFK470 MINGW64 /d/workspace/VSCode/scriptx-front
$ cmd
Microsoft Windows [版本 10.0.19042.928]
(c) Microsoft Corporation。保留所有权利。
D:\workspace\VSCode\scriptx-front>bash
86183@LAPTOP-CRFFK470 MINGW64 /d/workspace/VSCode/scriptx-front
$
输入
cmd
回到系统终端再次输入
bash
跳到git
终端
网友评论