Reputation: 67
I'm coding in C++ using Visual Studio Code but IntelliSense doesn't seem to work, I've downloaded the extension and used the IntelliSense reset command but it still refuses to work. What should I do?
Upvotes: 0
Views: 24427
Reputation: 450
Another point worth checking is that C_Cpp.intelliSenseEngine
is set to default
in the settings.json
file
Upvotes: 0
Reputation: 1651
Once you have downloaded and installed the extension from here, you will have to reload VS, then go to extensions (ctrl+Shift+X) and verify that the extension is enabled:
Just after that, once you create a c++ file (.cpp) intellisense should be enabled as you can see here:
Upvotes: 3