VS Code 會監控外部檔案變更,如果有,請重新載入最新的儲存檔案 工作副本沒有衝突不過,檢查與偵測變更 可能需要 所以我們相信程式碼集越大,偵測檔案所需的 VS Code 越長 變更。將部分目錄從搜尋空間中排除可加快速度。
在 GUI 中修改
如何從 VS Code 的觀察工具排除目錄:
- 按下
CMD/CTRL + comma
開啟 VS Code 設定。 - 在使用者設定選單中,按一下「文字編輯器」。
- 在文字編輯器下拉式選單中,按一下「Files」(檔案) 分頁標籤。
- 前往「檔案」分頁中的「排除」部分。
- 按一下「Add Pattern」按鈕。
- 在文字方塊中新增目錄模式。
- 按一下「OK」儲存變更。
- 你的變更會在下次開啟 VS Code 時生效。
在 settings.json
中修改
或者,您也可以直接修改 settings.json
並加入排除模式。
settings.json
包含儲存在單一 JSON 中的所有自訂 VS Code 設定。
如何從 VS Code 的觀察工具手動排除目錄:
- 按下
CMD/CTRL + SHIFT + P
開啟「Command Palette」(指令面板)。 - 在搜尋欄位中輸入
settings
。 - 按一下「Preferences: Open Settings (JSON)」。
在
settings.json
中,新增類似下方的排除模式並重新啟動 VS Code,讓變更生效。"files.watcherExclude": { "**/.DS_Store": true, "**/.cipd": true, "**/.clang-format": true, "**/.clang-tidy": true, "**/.dir-locals.el": true, "**/.git": true, "**/.gitattributes": true, "**/.gitignore": true, "**/.hg": true, "**/.idea": true, "**/.jiri_manifest": true, "**/.jiri_root": true, "**/.ssh": true, "**/.svn": true, "**/AUTHORS": true, "**/CMakeLists.txt": true, "**/CODE_OF_CONDUCT.md": true, "**/CONTRIBUTING.md": true, "**/CVS": true, "**/LICENSE": true, "**/PATENTS": true, "**/buildtools": true, "**/examples": true, "**/prebuilt/test_data": true, "**/garnet/third_party": true, "**/out": true, "**/prebuilt": true, "**/rustfmt.toml": true, "**/src/chromium": true, "**/topaz": true, "**/zircon/experimental": true, "**/zircon/third_party": true, }