Is it a good ides to set C_Cpp.intelliSenseCachePath
for each Folder?
#11742
-
For example, {
// in .vscode/settings.json
"C_Cpp.intelliSenseCachePath": "${workspaceRoot}/.cache/IntelliSense",
} |
Beta Was this translation helpful? Give feedback.
Answered by
sean-mcmanus
Nov 28, 2023
Replies: 1 comment
-
It's up to you. By default, the intelliSenseCachePath is a shared location so the intelliSenseCacheSize (default of 5 GB) will be shared by all workspace folders. If you have it set with a path that uses |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
ynty
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It's up to you. By default, the intelliSenseCachePath is a shared location so the intelliSenseCacheSize (default of 5 GB) will be shared by all workspace folders. If you have it set with a path that uses
${workspaceFolder}
then it won't be shared, so it could potentially use more disk space unless you lowered the C_Cpp.intelliSenseCacheSize.