← Other topics

VSCode - Disable code hint and hover popups (IntelliSense code completion)

Video Notes

If you’re using VSCode and you want to disable the code hints (IntelliSense) that popup as you’re typing, or the popups that appear when you hover your code, add the following configs to your settings.json file:

"editor.quickSuggestions": {
  "other": false,
  "comments": false,
  "strings": false
},
"editor.hover.enabled": false,
VSCode Settings for disabling code hints as shown in the settings.json file

How to find your settings.json file?

To open your settings.json file goto View > Command Palette

Search settings and choose Preferences: Open User Settings (settings.json)

Learn more

For more details on working with and customizing VSCode’s code completion features check out the docs: Intellisense.

If this info helped you out you can say thanks and support future content by clicking my Amazon affiliate link: https://amzn.to/3UtgnYk. If you make a purchase on Amazon within 24 hours of clicking the link I may receive a micro-commission and it costs you nothing extra. Any income from these sales goes directly to supporting me in making new videos and guides. Thank you for your support!

← Other topics