mans
mans

Reputation: 18178

how to set "C_Cpp.intelliSenseMode": "Tag Parser" in visual studio code

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.

enter image description here

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

Answers (1)

rovalette
rovalette

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

Related Questions