-
Notifications
You must be signed in to change notification settings - Fork 821
Turn off IntelliSense #1285
-
I would just like to know how to turn off/on the IntelliSense for VS code GO.
I am 100% sure that this is somewhere in the docs but I could not find it, unfortunately.
I would like to turn it off because I find it distracts me.
Thanks for the help.
Beta Was this translation helpful? Give feedback.
All reactions
Replies: 1 comment 3 replies
-
Please take a look at https://code.visualstudio.com/docs/editor/intellisense and https://code.visualstudio.com/docs/editor/intellisense#_customizing-intellisense.
Beta Was this translation helpful? Give feedback.
All reactions
-
Thanks for the suggestion but unfortunately I think that I will have to change a setting in gopls settings.
I am just not sure which setting to change. Please correct me if I am wrong. Thanks
Beta Was this translation helpful? Give feedback.
All reactions
-
Intellisense is provided by gopls, but the UI is entirely controlled by VS Code. The second link should show which settings you need to configure.
Beta Was this translation helpful? Give feedback.
All reactions
-
Thanks, changed settings.json in vs code by adding:
"editor.quickSuggestions": {
"other": false,
"comments": false,
"strings": false
}
Beta Was this translation helpful? Give feedback.