文章目錄
如何修改 Visual Studio Code Terminal 使用程式
Visual Studio Code 在啟動速度及跨平台支援上非常優秀,更新速度以及套件豐富性也非常好,因此大受開發人員喜愛,而我大多撰寫 ASP.NET MVC 平常還是使用 Visual Studio 為主,只有想要測試前端框架時才會改用 Visual Studio Code,畢竟速度跟支援度相當有感
之前沒有特別留意過 Visual Studio Code Terminal 一直認為是 cmd,今天在家開啟時才發現是 PowerShell ,想說為什麼更新之後一切變得不同了,於是查了一下原因:Windows 10 預設使用 PowerShell,之前 OS 則是使用 cmd
,才發現因為公司電腦是 Windows 7 所以是 cmd,自己電腦是 Windows 10 用的就是 PowerShell
只是平常 cmd 用得好好的,不想刻意去查 PowerShell 指令,所以就來看看可以怎麼修改 Visual Studio Code Terminal 使用的程式吧
現況
Windows 7
Windows 10
修改 Terminal 使用程式
開啟 Visual Studio Code 設定
File –> –> Perferences –> Settings
設定 Terminal 使用程式
以下是常見的 shell 執行程式及檔案位置
// 預設使用 64-bit cmd ,如果無法使用 64-bit 則改用 32-bit "terminal.integrated.shell.windows": "C:\\Windows\\sysnative\\cmd.exe" // 預設使用 64-bit PowerShell ,如果無法使用 64-bit 則改用 32-bit "terminal.integrated.shell.windows": "C:\\Windows\\sysnative\\WindowsPowerShell\\v1.0\\powershell.exe" // Git Bash "terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe" // Bash on Ubuntu (Windows 版) "terminal.integrated.shell.windows": "C:\\Windows\\sysnative\\bash.exe"
重新啟動 Visual Studio Code
- 需要留意無法同時設定多個不同程式,以最後的設定值為準
心得
Visual Studio Code 真心覺得是套好工具,很多需求都被考慮到,很多功能都可以透過設定來調整,真不愧是套深得開發者喜愛的好工具呀
很酷的是官方建議的程式位置是虛擬的,實際上沒那個資料夾,不知道是怎麼做到的
參考資訊
文章作者 Yowko Tsai
上次更新 2021-10-14
授權合約
本部落格 (Yowko's Notes) 所有的文章內容(包含圖片),任何轉載行為,必須通知並獲本部落格作者 (Yowko Tsai) 的同意始得轉載,且轉載皆須註明出處與作者。
Yowko's Notes 由 Yowko Tsai 製作,以創用CC 姓名標示-非商業性-相同方式分享 3.0 台灣 授權條款 釋出。