Reputation: 18178
Basd on this question in SO : Visual Studio Code Syntax Highlighting shows errors but compiles
I want to set "C_Cpp.intelliSenseMode": "Tag Parser" in setting.json,
But I am not able to set it.
as when add it to setting.json, I am getting the following error:
Unknown configuration setting
I am using the folloing tools:
How can I add this setting?
for your inform, I have similar problem as explained the the original question, I am getting error on editor but the application compiled correctly.
Upvotes: 3
Views: 8923
Reputation: 56
the correct setting to use in settings.json is "C_Cpp.intelliSenseEngine": "Tag Parser"
The intelliSenseMode setting is used in c_cpp_properties.json in order to have a working autocomplete with standard libraries.
Upvotes: 4