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?
- I assume you mean Visual Studio Code. Although when I tried to edit your title it said there already exists a question with the exact same title.drescherjm– drescherjm2018-10-08 11:47:47 +00:00Commented Oct 8, 2018 at 11:47
- Yea visual studio code :)filipanton1– filipanton12018-10-08 11:50:37 +00:00Commented Oct 8, 2018 at 11:50
- Have you gone through their docs? code.visualstudio.com/docs/editor/intellisenseMayur– Mayur2018-10-08 11:58:06 +00:00Commented Oct 8, 2018 at 11:58
- Yes, I still dont know what to do, I have "intelliSenseMode": "msvc-x64"filipanton1– filipanton12018-10-08 12:18:18 +00:00Commented Oct 8, 2018 at 12:18
- If you mean the engine, check if "Intelli Sense Engine" is set to "Default" (the alternatives beeing: "Tag Parser" or "Disabled").Bob__– Bob__2018-10-08 13:21:29 +00:00Commented Oct 8, 2018 at 13:21
Add a comment |
2 Answers
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:
1 Comment
filipanton1
Okay so it seems like I somehow had 2 different versions of intellisense installed at the same time, I disabled one of them and its working fine now.


