How can I disable the default tooltip hint message in VS Code that appears when I hover over things in the editor? It's annoying sometimes.
- 160If they were just shifted over not blocking nearby text they'd be just fine!user3015682– user30156822019-10-30 16:06:55 +00:00Commented Oct 30, 2019 at 16:06
- 5I wish they were like Visual Studio, where they don't get in the way so much, and aren't selectable. The fact you can click and select on them, is what makes them annoying, for me.Tsar Bomba– Tsar Bomba2022-01-12 17:39:30 +00:00Commented Jan 12, 2022 at 17:39
- 2Nothing worked for me from any of those suggestions, but I found the issue: HAD TO DISABLE PYLANCE. (then restart/reload) I still have intelisense suggestions when typing (whic i want) but got rid of those large popping boxes that were obstructing the view.tonycor nikolauos– tonycor nikolauos2022-08-14 19:51:31 +00:00Commented Aug 14, 2022 at 19:51
- Disabling pylance worked like a charm for me. If you are unsure about what pylance do: stackoverflow.com/a/65475307/1195496Peter– Peter2023-01-20 13:34:43 +00:00Commented Jan 20, 2023 at 13:34
- 4They're like swarming insects, always getting in your face, whenever you try to read or click anything. Guillotine is too kind 😜. I set editor.quickSuggestionsDelay to an astronomically large number. I turned off every single option I could find that 'suggests' or anything else like that, and they still kept coming. Now I'm adding options that aren't listed but other people tell me about.OsamaBinLogin– OsamaBinLogin2023-05-06 08:45:36 +00:00Commented May 6, 2023 at 8:45
15 Answers
editor.hover.enabled: falsein settings.json to Tooltip
Click on Edit in settings.json
There are two panes
Default User Settings
"editor.quickSuggestions": { "other": false, "comments": false, "strings": false } User Settings
"editor.parameterHints.enabled": false, "editor.suggest.snippetsPreventQuickSuggestions": false, "html.suggest.html5": false, "editor.snippetSuggestions": "none", This also can be done UI.
Setting Snippet Suggestions : false
Update August 2018 (version 1.27)
Goto File=>Preference=>Settings
Text Editor => Suggestions
Click on Edit in settings.json
"editor.parameterHints.enabled": false, "editor.suggest.snippetsPreventQuickSuggestions": false, "html.suggest.html5": false, Update your suggest options and save.
Before August 2018
Goto File=>Preference=>User Settings
You will find settings.json
// Configures if the built-in HTML language support suggests Angular tags and properties. "html.suggest.angular1": false, "html.suggest.ionic": false, "html.suggest.html5": false, Just find your language and set suggest = false
Update
Setting to turn off ALL popups
"editor.parameterHints": false 5 Comments
"editor.hover.delay": 1000, was enough for me."editor.hover.sticky": false"editor.hover.enabled": false, is your bulletproof solution. Then you can use CTLR + K, CTLR + I (CMD + K, CMD + I for Mac).
8 Comments
ctrl + k does not work and I had to map the "show definition preview hover" to ctrl + k manually and it works great now. Escape also works on Linux after invoking the hover with keyboard.Ctrl K, Ctrl I shortcut... I remapped the "Show Hover" and "Debug: Show Hover" keyboard commands into F1 (since F1 initially showed the Command Palette), which will show the Hover tooltip on demandTo hide those hints you can just add "editor.parameterHints": false to your settings.json. Found the answer in here.
1 Comment
In the menu, choose File > Preferences > Settings.
I find using a larger value for Editor > Hover: Delay (search for "delay" in the settings search bar) does the trick for me. Its default is 300ms. This doesn't address the desire to actually eliminate the tooltips, but having them only appear after, say, 2 seconds, reduces the visual clutter quite a bit for me.
5 Comments
I'm using Visual Studio Code v1.63.0 and in Settings I searched for "hover" and, among other things, found "Editor > Hover: Delay" and "Editor > Hover: Enabled". Unchecking the latter will disable the hover. However, I personally find them useful but they're displayed too quickly so I increased ""Editor > Hover: Delay" from "300" to "5000"
5 Comments
On version 1.27.2, I found that only this parameter disabled all the tooltips: "editor.hover.enabled": false.
1 Comment
Cntrl + shift + P -> Prefences: Open Settings (JSON)
"editor.parameterHints": false, "editor.hover.enabled": false i had to do both of these.
2 Comments
Here's the noob version, assuming you know little about VS Code (like me).
Windows. VS Code version: 1.37.1
- While in VS Code:
press F1 then type "settings" or "preferences" - then click "Preferences: Open User Settings"
- or -
from top menu: File>Preferences>Settings
- or -
hotkey: ctrl+, - in the settings pane, type "hover" (no need to press "enter")
- the settings pane should display the hover settings immediately
- Uncheck "Editor › Hover: Enabled"
hover disable
Rockstar Version: edit the JSON like a balla
- F1 then type "Open Settings (JSON)"
-or-
navigate to settings JSON file and open in VS Code
https://code.visualstudio.com/docs/getstarted/settings#_settings-file-locations - Add this to JSON file (within curly braces, INCLUDE quotes): "editor.hover.enabled": false
Note: each line needs a comma after it. If you add to top, put a comma after this line. If you add to bottom, add a comma after the previous line. - Don't forget to save!
what JSON looks like
If you're new to coding, those tooltips can come in handy. You may want instead to just DELAY their appearance as Logan suggested.
click here: https://stackoverflow.com/a/53512394/8623576 or simply scroll up! :)
Note: I appreciate others have posted almost the EXACT same answer but, as I mentioned, this is the NOOB version that assumes the user has little/no experience with VS Code.
Comments
If you are not looking for disable and as mentioned by user: Darrell Brogdon above, if you want to delay the hover time of tooltip as solution then simply add the below line in user settings with your desired time value. replace value 3000 as per your need. Note: hover settings are moved in Online Services Settings in newer versions, hence you might not be able to find it with search 'hover' in user settings.
// modify in Preferences --> Settings or settings.json "editor.hover.delay": 3000, Comments
I found that disabling editor.hover.sticky was the most effective fix for this. Controls whether the hover should remain visible when mouse is moved over it. I don't mind the hover popups, but dont block me from the text behind the popup...
"editor.hover.sticky": false Set this in your user settings.json: ctrl + shift + p -> Preferences: Open User Settings (JSON)
Also - you can browse all available settings and their descriptions in defaultSettings.json: ctrl + shift + p -> Preferences: Open Default Settings (JSON). Very useful to search for a term in there with ctrl + f.
Comments
You can add an additional hover delay in your settings.json file:
"editor.hover.delay": 2000, 


