From 51115c125447a85e7ecec63828a6cedd30fb5346 Mon Sep 17 00:00:00 2001 From: Peter Date: Sun, 16 Jun 2019 19:37:32 +1000 Subject: [PATCH] Ignore vscode-cpptools cache (#2623) One of the recent updates to the vscode-cpptools extension made it start caching in .vscode/ipch, and this cache can be quite big for even small projects. Since they're cache files, they should be ignored by default. This may be a short-lived suggestion, as there is already some mention that the IntelliSense cache folder may be moved to workspace storage, rather than 'per project' storage... although the 'when' is anyone's guess. See here for more: https://github.com/microsoft/vscode-cpptools/issues/3347 --- platformio/ide/tpls/vscode/.gitignore.tpl | 1 + 1 file changed, 1 insertion(+) diff --git a/platformio/ide/tpls/vscode/.gitignore.tpl b/platformio/ide/tpls/vscode/.gitignore.tpl index 18453b74..89cc49cb 100644 --- a/platformio/ide/tpls/vscode/.gitignore.tpl +++ b/platformio/ide/tpls/vscode/.gitignore.tpl @@ -2,3 +2,4 @@ .vscode/.browse.c_cpp.db* .vscode/c_cpp_properties.json .vscode/launch.json +.vscode/ipch