vscode.md: change watcherExlude out/ to out*/ to filter ChromeOS build output
BUG=
Review-Url: https://codereview.chromium.org/2847663004
Cr-Commit-Position: refs/heads/master@{#467943}
diff --git a/docs/vscode.md b/docs/vscode.md
index 65fd471..100be18 100644
--- a/docs/vscode.md
+++ b/docs/vscode.md
@@ -192,10 +192,13 @@
},
"files.watcherExclude": {
- // Don't check out/ and third_party/ for changes to fix issue
+ // Don't watch out*/ and third_party/ for changes to fix an issue
// where vscode doesn't notice that files have changed.
// https://github.com/Microsoft/vscode/issues/3998
- "**/out/**": true,
+ // There is currently another issue that requires a leading **/ for
+ // watcherExlude. Beware that this pattern might affect other out* folders
+ // like src/cc/output/.
+ "**/out*/**": true,
"**/third_party/**": true
},