Can't get Intellisense to work #421
-
I recently added this extension to VSCode, and the syntax highlighting looks great. However, I can't seem to the function hover Intellisense to work (for it to show the comment above the function and the function's parameters). The same goes for using ctrl-click on a symbol to go to its definition. Is there any extra configuration I need to add beyond installing the extension? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Certainly! It’s frustrating when IntelliSense doesn’t work as expected. Let’s troubleshoot this together. Here are some steps you can take to ensure that IntelliSense behaves correctly in Visual Studio Code (VS Code): Enable Hover: { |
Beta Was this translation helpful? Give feedback.
Certainly! It’s frustrating when IntelliSense doesn’t work as expected. Let’s troubleshoot this together. Here are some steps you can take to ensure that IntelliSense behaves correctly in Visual Studio Code (VS Code):
Enable Hover:
Open your VS Code settings (you can do this by pressing Ctrl + , or navigating to File > Preferences > Settings).
Search for editor.hover.enabled in the search bar.
Make sure the value is set to true. If not, update it to enable hover functionality:
JSON
{
"editor.hover.enabled": true
}
AI-generated code. Review and use carefully. More info on FAQ.
Alternatively, you can use the UI settings by searching for “hover enabled” in the settings and ensuring it’s enabled