Skip to content

Commit 5a4c25e

Browse files
authored
add C_Cpp. prefix to settings.
1 parent 3adb8cb commit 5a4c25e

File tree

1 file changed

+3
-3
lines changed
  • Documentation/LanguageServer

1 file changed

+3
-3
lines changed

Documentation/LanguageServer/FAQ.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ If you haven't already created a c_cpp_properties.json file for your project, yo
2222

2323
#### Disable the error squiggles
2424

25-
If you want to keep using the semantic-aware features that will be coming online via the new IntelliSense engine, but don't want to see the error squiggles in the editor, then you can disable the lint messages by adding `"errorSquiggles": "Disabled"` to your settings.json file.
25+
If you want to keep using the semantic-aware features that will be coming online via the new IntelliSense engine, but don't want to see the error squiggles in the editor, then you can disable the lint messages by adding `"C_Cpp.errorSquiggles": "Disabled"` to your settings.json file.
2626

2727
#### Disable the new IntelliSense engine
2828

29-
If you were happy with the old behavior of the extension or want to wait to get the semantic-aware features until build system support arrives in the extension so that you don't have to manually configure a c_cpp_properties.json file, you can disable the new IntelliSense engine entirely by adding `"intelliSenseEngine": "Tag Parser"` to your settings.json file.
29+
If you were happy with the old behavior of the extension or want to wait to get the semantic-aware features until build system support arrives in the extension so that you don't have to manually configure a c_cpp_properties.json file, you can disable the new IntelliSense engine entirely by adding `"C_Cpp.intelliSenseEngine": "Tag Parser"` to your settings.json file.
3030

3131
## How do I get the new IntelliSense to work with MinGW on Windows?
3232

@@ -38,7 +38,7 @@ You can, however, override the engine's configuration by changing the contents o
3838

3939
Starting with version 0.11.0 of the cpptools extension, there are now two settings in the c\_cpp\_properties.json file. They are used by the different IntelliSense engines that we support and have slightly different meanings for the components that use them.
4040

41-
The active IntelliSense engine is controlled via the `"intelliSenseEngine"` setting in your settings.json file. The valid values for this setting are:
41+
The active IntelliSense engine is controlled via the `"C_Cpp.intelliSenseEngine"` setting in your settings.json file. The valid values for this setting are:
4242
* `"Default"`
4343
* `"Tag Parser"`
4444

0 commit comments

Comments
 (0)