Настройка корректной работы EMMET в Visual Studio Code (VSC)
Visual Studio Code — хороший кроссплатформенный, редактор кода. Несмотря на то, что это продукт компании Microsoft, Visual Studio Code является бесплатным Open source проектом. VSC-находится в активном развитии, обновления выходят каждый месяц, и это радует:). Данный редактор относительно легковестный, имеет возможность подключения различных плагинов, встроенный EMMET и инструмент для работы с git. Вообщем данный редактор меня устраивает всем, однако работа EMMET в нем слегка кривовата, выводит не те значения что положено (заметил при работе с CSS). Вот один из способов исправить данную проблему.
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.
Step 4: Inside the curly braces, enter the following code under the already written JSON code:
“emmet.triggerExpansionOnTab”: true,
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.
Emmet not working in VSCode | Emmet Solution

Just follow the below steps again you can revamp your productivity.
STEP : 1 Open your VSCode
STEP 2: File -> Preferences -> Settings
STEP 3: In settings you can able to see JSON file.
STEP 4: Include your languages and customization options. here I’m going to enable HTML and auto-trigger functionality.
Then save and close the setting , restart your VSCODE, and see the magic emmet will work
Emmet in Visual Studio Code not working ?
This tutorial guides you on how to troubleshoot if Emmet in Visual Studio not working in your Visual Studio Code editor.
Emmet in Visual Studio Code not working ?
Emmet is built right in to Visual Studio code and no extension is required to install it separately. When you typing .classname is your visual studio code editor not triggering Emmet abbreviations for any suggestions ?
Then you need to check whether Emmet is set properly or settings are enabled correctly.
First, hit CTRL + SHIFT + P keys together, then type “settings.json” in the text box -> Choose “Preferences: Open Default Settings (JSON)” as shown below.

Choosing the highlighted option will open Default Settings JSON file and search for required Emmet configurations in the JSON settings config file as shown below.
For example, as you can see that, Emmet expanded abbreviations as suggestions is disabled.