本篇介紹 Visual Studio Code 關閉存檔自動排版 format,關閉 Visual Studio Code 存檔自動排版有兩種方式,
VS Code 關閉存檔自動排版的方法分為這兩種方式,
- 從 UI 介面關閉存檔自動排版
- 從 setting.json 設定檔關閉存檔自動排版
從 UI 介面關閉存檔自動排版
用 Ctrl + ,
快捷鍵打開設定 setting,macOS 快捷鍵是 Cmd + ,
選擇 Text Editor > Formatting
,將 Format On Save
取消勾選,這樣就不會存檔自動排版了,中文介面的話是選擇 文字編輯器 > 格式化
,
從 setting.json 設定檔關閉存檔自動排版
從 setting.json 設定檔關閉存檔自動排版的方法就是在 setting.json 加上 "editor.formatOnSave": false
就是存檔時不進行自動排版,可以另外使用 Alt + Shift + F 手動執行自動排版,1
2
3{
"editor.formatOnSave": false
}
以上就是 Visual Studio Code 關閉存檔自動排版的2種方式介紹,
如果你覺得我的文章寫得不錯、對你有幫助的話記得 Facebook 按讚支持一下!
其他參考
visual studio code - VSCode - Disable ALL Auto Formatting on Save - Stack Overflow
https://stackoverflow.com/questions/61827206/vscode-disable-all-auto-formatting-on-save
https://linuxpip.org/vscode-format-on-save/