Search found 1 match
- Sat Dec 03, 2022 11:46 am
- Forum: IDEs for ESP-IDF
- Topic: vscode intelligense not working properly
- Replies: 2
- Views: 6601
Re: vscode intelligense not working properly
In the "settings.json" file in the ".vscode" folder you need to set the "C_Cpp.intelliSenseEngine" property to "Default" instead of "Tag Parser" : "C_Cpp.intelliSenseEngine": "Default" However, in my case, with this option, IntelliSense only recognizes the headers after compiling the code. But it co...