Visual Studio Code Editor: Disable IntelliSense for CSS Files?

I am using VS Code to write CSS for the exercise. When I try to use some Emmet labels, for example, a lot of two letters, such as mt - margin-top, the IntelliSense tooltip cancels Emmet. I can decline the invitation, but I'm trying to reduce the keystrokes here.

Is there a way to disable IntelliSense for specific files or even file types? Or maybe another solution that I did not think about?

+4
source share
1 answer

I don't know if it was too late, but I found the answer:

Put this in your settings. json:

"[css]": {
    "editor.quickSuggestions": false    
}

, intelliSense .css .

+3

Source: https://habr.com/ru/post/1663989/


All Articles