I have a limited quota and large folders in ~/.cache/vscode-cpptools that look like this: I have already set the Intelli Sense Cache Path to somewhere else, but these are still generated in that folder (after I delete them). Any ideas what they are and how to prevent them from being...
Can you check what version of the extension you have installed, in your ~/.vscode/extensions folder, e.g. is it ms-vscode.cpptools-1.15.2-darwin-arm64? Then can you run the ms-vscode.cpptools-1.15.2-darwin-arm64/bin/cpptools-srv process to make sure it runs without any error output...
$ du -sh ~/.cache/vscode-cpptools/ 59G /home/liuyis/.cache/vscode-cpptools/ $ du -sh ~/.cache/vscode-cpptools/* 13G /home/liuyis/.cache/vscode-cpptools/23ba42b1fb5498717cb6b48f49d3d7f2 1.4G /home/liuyis/.cache/vscode-cpptools/23ba42b1fb5498717cb6b48f49d3d7f2-1 343M /home/...
I have a very large linux project, including thousands of files. I noticed that after some time cpptools starts consuming very large memory size and CPU consumption is very high as well. Systems becomes very sluggish. Here's what I get w...
Simple repro is #include "string" int main() { return std::string().size(); } and then add a "string" file. The string from the system library is still used instead of the newly added workspace string file -- it becomes fixed if the C_Cp...
@Colengms Hi! Didn't have a chance to test if intellisense works for nested roots. Since then I've been using a slightly different approach as a workaround, and thus don't see the issue in question: instead of putting projects inside a w...
The fix at #10608 didn't work, because the config.configurationProvider !== this.lastCustomBrowseConfigurationProviderId.Value check is not true since config.configurationProvider is initialized with this.lastCustomBrowseConfigurationProviderId.Value....
Also posted here: microsoft/vscode#113421 VSCode Version: code -v 1.52.1 ea3859d4ba2f3e577a159bc91e3074c5d85c0523 x64 OS Version: Ubuntu 20.04 Steps to Reproduce: Running Ubuntu 20.04 and I checked my disk usage. Looks like there are lot...