vscode intelligense not working properly
Posted: Wed Sep 22, 2021 6:32 am
Hello i am using vscode and i have an issue with the intelligence. I used sever versions of esp-idf this did not fix my problem i am currently using the 4.4 and my main issue is that i get recommendations from intelligence but when i go inside lets say a struct intelligence does not follow which means that if i have a struct name time and this had two variables sec and min then when i go to program and call it like:
Then intelligence shows what ever function or variable. If i start typing it slowly it shorts out but this means that everytime either i have to open the structs to check variable names or i have to remember.
Is there some setup in config that helps to fix this?
I am attaching a screenshot : My config file is :
Code: Select all
struct time t ={
. //and use the intelligence
};
Is there some setup in config that helps to fix this?
I am attaching a screenshot : My config file is :
Code: Select all
{
"configurations": [
{
"name": "ESP-IDF",
"compilerPath": "/Users/kyrpav/.espressif/tools/xtensa-esp32-elf/esp-2021r1-8.4.0/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc",
"cStandard": "c11",
"cppStandard": "c++17",
"compileCommands": "${workspaceFolder}/build/compile_commands.json",
"includePath": [
"${config:idf.espIdfPath}/components/",
"${config:idf.espIdfPath}/components/**",
"${config:idf.espIdfPathWin}/components/**",
"${config:idf.espIdfPath}/components/driver/include",
"${workspaceFolder}/**"
],
"browse": {
"path": [
"${config:idf.espIdfPath}/components/",
"${config:idf.espIdfPath}/components/**",
"${config:idf.espIdfPathWin}/components/**",
"${config:idf.espIdfPath}/components/driver/include",
"${workspaceFolder}/**"
],
"limitSymbolsToIncludedHeaders": true
},
"intelliSenseMode": "macos-clang-x64"
}
],
"version": 4
}