5

I am using VS Code to write some CSS for an exercise. When I attempt certain Emmet shortcuts, for example many two letter ones like mt - margin-top, the IntelliSense prompt overrides Emmet. I could dismiss the prompt, but I'm trying to reduce keystrokes here.

Is there a way to disable IntelliSense for particular files or even files types? Or perhaps another solution I have not thought of?

1 Answer 1

5

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

Put this in your settings.json:

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

Normaly now, you wont get intelliSense suggestions in your .css files.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.