Yeah, I am working in a external drive. But I have figured out hot to enable the intellisence.
0) This is on linux (Ubuntu)
1) In VS Code settings add this:
"clang.cxxflags": [
"-std=c++11",
"-std=c++14",
"-std=c++17",
"-std=c++20",
"-I/yourlocation/godot-cpp/godot_headers", // header files
"-I/yourlocation/godot-cpp/include", // Include
"-I/yourlocation/godot-cpp/include/core",
"-I/yourlocation/godot-cpp/include/gen",
],
and on ccppproperties.json, also add
"/yourlocation/godot-cpp/godot_headers", // header files
"/yourlocation/godot-cpp/include", // Include
"/yourlocation/godot-cpp/include/core",
"/yourlocation/godot-cpp/include/gen",
Thank you!