DEV Community

Cover image for Emmet not working in VS Code ?— Here’s how you can fix this problem!!
Pranav Arora
Pranav Arora

Posted on • Updated on

Emmet not working in VS Code ?— Here’s how you can fix this problem!!

Emmet is a powerful extension in Visual Studio Code. If you are developing a website or working with any language such as HTML, Emmet helps you to write your code fast and efficiently without making silly mistakes.

But sometimes, while updating VS Code, the VS Code loses the file associations or Emmet stops working for some reason. I encountered the similar problem after I updated my VS Code. I was not able to use Emmet and it seemed annoying to me because I didn’t want to write whole html starter templates while working on website development. So I started finding out the solution and figured out how to fix that.

Step 1: Start your VS Code. Click on the Settings or press Ctrl+, to open the VS Code Settings.

Step 2: Click on the Extensions tab on the left side of the settings. Click on HTML.

Step 3: Click on the “Edit in settings:json” hyperlink to edit the settings in JSON format.

vscode_emmet.png

Step 4: Inside the curly braces, enter the following code under the already written JSON code:

“emmet.triggerExpansionOnTab”: true,
“files.associations”: {“*html”: “html”},
"emmet.useInlineCompletions": true
Enter fullscreen mode Exit fullscreen mode

Step 5: Save the file. Now if you try to apply Emmet in your code, it will work smoothly!!

That’s how I fixed this Emmet not working problem which I encountered when I updated VS Code. I hope this solution may be helpful for you as well and serves the purpose.

Oldest comments (63)

Collapse
 
ramprakashram profile image
Ram

Thanks. It worked flawlessly.

Collapse
 
pranavarora1895 profile image
Pranav Arora

You're Welcome Ram!! 😀

Collapse
 
uvlabs profile image
Uriahs Victor

You can also turn on this setting via VS settings without editing the .json file

Collapse
 
paubel profile image
Paul B • Edited

And here is where you do that: dev-to-uploads.s3.amazonaws.com/up...

Collapse
 
pranavarora1895 profile image
Pranav Arora

Yup great!!

Collapse
 
pranavarora1895 profile image
Pranav Arora

True!! Thanks for telling. 😀

Collapse
 
mariullom profile image
Mari Ullom

You are a lifesaver!

Collapse
 
pranavarora1895 profile image
Pranav Arora

Oh thank you, Mari!! 😀

Collapse
 
ngl4 profile image
Cindy Lam

Thank you Pranav! This fixed the Emmet extension issue using your approach!

Collapse
 
pranavarora1895 profile image
Pranav Arora • Edited

You're most welcome, Cindy!! 😊

Collapse
 
tdrobison profile image
tdrobison

Bravo! Fixed my issue.

Collapse
 
pranavarora1895 profile image
Pranav Arora

That's great!! 😀

Collapse
 
victorsgb profile image
victorsgb

Thank you so much!!

Collapse
 
pranavarora1895 profile image
Pranav Arora

You're Welcome!!

Collapse
 
onwuemene profile image
Joshua

Thank you so much bro, it worked.

Collapse
 
hpinedoh profile image
hpinedoh

Great! thanks...

Collapse
 
alonedatascientist profile image
alonedatascientist

Fix still works as of 7 / 11/ 2022. Thank you sir!

Collapse
 
edichirca profile image
Edi Chirca • Edited

Ive tried it, still not working, maybe Im doing something wrong:
Image description
Image description

Collapse
 
ilonadev profile image
iLonaDev

Try to add one more line to the snippet:
"emmet.useInlineCompletions": true

Collapse
 
edichirca profile image
Edi Chirca • Edited

Just added it, finally its working thanks iLonaDev .

Collapse
 
utkarshkalra profile image
utkarsh

It actually helped thanks man

Collapse
 
laplace125 profile image
Akano Olayinka Afeez

Thanks, it worked

Collapse
 
freddyteddy profile image
freddyteddy

Thanks Pranav

Collapse
 
itsmsd profile image
Madhusudannn03

still not working
please anyone help .
Image description

Collapse
 
pranavarora1895 profile image
Pranav Arora • Edited
  1. As you can see " " (the quotes) that you have copied are different from the others in settings.json. So you remove the copied quotes and type them again.

  2. Place a , (comma) at the end on line 19. This will separate line 19 from line 20.

Hope that helps!! 😀

Collapse
 
itsmsd profile image
Madhusudannn03

Can u explain me 1 point 🙄🙄
main 5 dino se kosis kr rha lekin nhi ho rhaa mere se utube bhi dekha vha bhi sb yhi bol rhe ki
“emmet.triggerExpansionOnTab”: true,
“files.associations”: {“*html”: “html”},
isko copy kar le ho jayega but jab main kar rha to red ho jaa rha

Thread Thread
 
pranavarora1895 profile image
Pranav Arora

Dhyan se dekho jo tumne copy kia hai uske quotes different hain. Tum sirf ek kaam kro, jo tumne copy kia hai uske quotes ko delete kro aur apne se firse lga lo.

Thread Thread
 
itsmsd profile image
Madhusudannn03

bhaiya kaha glt hai mujhe to dikh hi nhi rhaa jo red me show ho rha oo maine shi likha hua hai aap kiska baat kar rhe ho

Thread Thread
 
pranavarora1895 profile image
Pranav Arora

Quotes (" ") bdlo bas, baki sab sahi hai.

Thread Thread
 
itsmsd profile image
Madhusudannn03

Image description

ab ye light blue ho gya

Thread Thread
 
itsmsd profile image
Madhusudannn03 • Edited

bhaiya abhi bhi kaam n kar rhaa ab to sb kar dala lagg rha mera me hi unique error hai

Image description
Image description

Thread Thread
 
pranavarora1895 profile image
Pranav Arora

Settings.json me apni line 18 me ye code daalo:

"files.associations": {
"*html": "html",
"*.html": "html"
}

Thread Thread
 
itsmsd profile image
Madhusudannn03

kuch nhi huaa

Image description
Image description

Thread Thread
 
pranavarora1895 profile image
Pranav Arora

Line 23 wali file associations delete krdo. wo puri line delete krdo.

Thread Thread
 
itsmsd profile image
Madhusudannn03

bhaiya nhi ho rha agar aap dhyn se dekhe to 17 aur 22 ka text color baki sb sr different hai mujhe lagg rha isi karn se nhi ho rha.

Thread Thread
 
itsmsd profile image
Madhusudannn03

hello bhaiya nhi ho rhaa abhi bhi

Thread Thread
 
pranavarora1895 profile image
Pranav Arora

Reinstall krke dekho vs code.

Collapse
 
euhansarkar profile image
Euhan Sarkar

Thank You Arora! it's working.