How to disable these VSCode tooltips?

后端 未结 2 1764
不思量自难忘°
不思量自难忘° 2021-01-01 03:02

Whenever I am typing, these tooltips show up. Is there a way to disable them?

相关标签:
2条回答
  • 2021-01-01 03:23

    There is one missing setting to disable some tooltips which gives more information.

    Go to Settings in VSCode and search for Hover you can disable that one to finish with the hover popups forever.

    0 讨论(0)
  • 2021-01-01 03:26

    There are a few ways to customize the IntelliSense in VSCode. I believe the one in your picture is a parameter hint. You can go to File → Preferences → Settings and search for "parameterHints".

    Here are some others you can tweak:

    // Controls if quick suggestions should show up while typing
    "editor.quickSuggestions": true,
    
    // Controls if suggestions should be accepted with "Enter" - in addition to "Tab". Helps to avoid ambiguity between inserting new lines and accepting suggestions.
    "editor.acceptSuggestionOnEnter": true,
    
    // Controls the delay in ms after which quick suggestions will show up.
    "editor.quickSuggestionsDelay": 10,
    
    // Enable word based suggestions
    "editor.wordBasedSuggestions": true,
    
    // Enable parameter hints
    "editor.parameterHints": true
    

    More info here.

    0 讨论(0)
提交回复
热议问题