Intellisense not working? #12624
-
I am trying to configure c++23 intellisense on MacOS using g++-14 (rather than clang). The hover works well, but the auto-completion, go-to-definition, etc., simply does not work. By pressing Shift-Spc, its pops up with "No suggestions." Is this something wrong with my configuration with intellisense or unsupported behavior for c++23? |
Beta Was this translation helpful? Give feedback.
Answered by
sean-mcmanus
Aug 28, 2024
Replies: 1 comment 11 replies
-
C++23 with g++-14 is supported on Mac. Can you set C_Cpp.loggingLevel to "Debug" and see if there are any errors reported? Does it work with C++20 or with clang with C++23? Do you have any sample code? |
Beta Was this translation helpful? Give feedback.
11 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@sparkwenc Do all symbols not appear at all in any workspace? There may be some failure to create the database, so you might try changing C_Cpp.default.browse.databaseFilename to something like "${workspacefolder}/.vscode/vc.db" to ensure the database is able to be created. Otherwise, if you have C_Cpp.loggingLevel set to "Debug" then you might want to check for tag parsing error messages after saving/editing the file with no symbols.