A
A
Artem Kaybagorov2017-11-06 08:57:45
Emmet
Artem Kaybagorov, 2017-11-06 08:57:45

How to disable VS Code tooltips?

I already got used to using the Emmet abbreviations in VS Code in the layout, but I ran into a problem if you turn off the "Suggestions" hints completely - the emmet abbreviations also stop expanding.
How to disable tooltips for html, sass and css, but still leave the ability to use emmet abbreviations?

Answer the question

In order to leave comments, you need to log in

4 answer(s)
A
Artem Kaybagorov, 2017-11-06
@ArteMoon

Looked at the answer in this question. The hints remained, only Tabnow only Emmet is bound.
1. Change in settings 2. Bind another keyboard shortcut to in Keyboard Shortcuts settings

A
Agent Gus, 2018-03-28
@yanminibaev

I solved this problem like Disable prompts + emmet works
"emmet.triggerExpansionOnTab": true,
"editor.quickSuggestions": {
"other": false,
"comments": false,
"strings": false
},

K
KollieOllie, 2020-09-24
@KollieOllie

SOLUTION (for those who are interested)
Settings
in the search set settings.json click Edit in settings.json
in the open window paste
"[html]": {"editor.hover.enabled": false}
save the settings and reload the program
- this disables hints for HTML , and css leaves

I
Igor, 2021-11-12
@igory8n

Version 1.62.2, this config helped:

"editor.hover.enabled": false,
"editor.parameterHints.enabled": false,
"emmet.triggerExpansionOnTab": true,
"editor.quickSuggestions": false,
"editor.suggestOnTriggerCharacters": false

Disables all hints, Emmet works on tab.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question