Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio Code Emmet not working

I am using VisualStudioCode 1.20.1 Version. Emmet is inbuilt according to VSC website.But when i am trying on VSC IDE and using anchor tag and referring to class dropdown-toggle the class is not auto suggested or recognized by vsc.

like image 664
Karan Nayyar Avatar asked Feb 20 '18 15:02

Karan Nayyar


1 Answers

In your vscode user setting, add

"emmet.includeLanguages": { "javascript": "html" }

That way you can use emmmet in your js files.

like image 168
Tien Lin Avatar answered Oct 19 '22 13:10

Tien Lin