背景說(shuō)明
VScode
默認(rèn)情況下使用powershell
构韵,在默寫場(chǎng)景下對(duì)腳本的支持并不是很好,這里更換gitbash
進(jìn)行替換
終端=>新終端
解決方案
配置文件
打開VScode軟件绰筛,找到文件=>首選項(xiàng)=>設(shè)置,打開設(shè)置,在搜索框中輸入terminal.integrated.shell.windows
在用戶標(biāo)簽頁(yè)面里面的下面有一個(gè)在settings.json中編輯描融,此時(shí)VScode打開了文件铝噩,可以進(jìn)行編輯。
文件路徑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的絕對(duì)路徑
重啟軟件
關(guān)閉VScode
軟件并重新打開稼稿,按ctrl
+shift
+`` `鍵打開終端薄榛,看是否生效
86183@LAPTOP-CRFFK470 MINGW64 /d/workspace/VSCode/scriptx-front
$
終端切換
可以通過(guò)cmd
命令和bash
命令對(duì)終端進(jìn)行切換
86183@LAPTOP-CRFFK470 MINGW64 /d/workspace/VSCode/scriptx-front
$ cmd
Microsoft Windows [版本 10.0.19042.928]
(c) Microsoft Corporation讳窟。保留所有權(quán)利。
D:\workspace\VSCode\scriptx-front>bash
86183@LAPTOP-CRFFK470 MINGW64 /d/workspace/VSCode/scriptx-front
$
輸入
cmd
回到系統(tǒng)終端再次輸入
bash
跳到git
終端