Introduction

Emmet is a plugin, built into VS Code, that helps you write HTML and CSS more efficiently by providing a bunch of clever shortcuts. By now, you have written a good amount of HTML and CSS, and if you have been using VS Code there’s a big chance that you have already encountered Emmet in some way.

Lesson overview

This section contains a general overview of topics that you will learn in this lesson.

  • Use some of Emmet’s most useful shortcuts.
  • Set up custom Emmet keybindings in VS Code.

Emmet

Emmet is a really useful tool for anyone that works a lot with HTML and CSS. Luckily, Emmet does not have that big of a learning curve, and if you already know how to write HTML and CSS you’ll have no trouble picking up Emmet abbreviations.

Let’s start off by generating an HTML boilerplate with Emmet. Opening up an empty html file in VS Code and entering ! should trigger Emmet suggestions like so:

Triggering Emmet

Pressing Enter should generate the following text:

Generating boilerplate HTML

We have just used one of many Emmet abbreviations. There are lots of useful Emmet abbreviations that you should check out, like Wrap with Abbreviation and Remove Tag. Definitely go through those before moving forward.

Considering how useful these two are, we will be setting up VS Code shortcuts for them. Start off by opening the keyboard shortcuts window. You can do so by clicking the cog icon on the bottom left and selecting keyboard shortcuts, or by pressing Cmd + K followed by Cmd + S.

Setting up VS code shortcuts

After entering the keyboard shortcuts window, you should be able to access all of the Emmet actions by searching for Emmet:<action>. In our case, it will be Emmet:Wrap With Abbreviation

Emmet actions

You can now add a shortcut to it by clicking the plus sign and entering whichever key combination you would like for that specific action. You can do the same for Remove Tag by searching for Emmet:Remove tag.

Assignment

  1. This is a good video on Emmet. Go ahead and watch it up to 11:37 as it demonstrates some content we haven’t covered yet. We’ll get there eventually.
  2. Take a look at the Emmet cheat sheet. You don’t have to memorize it, but it’s good that you get familiar with the different ways it can be used.

Knowledge check

This section contains questions for you to check your understanding of this lesson. If you’re having trouble answering the questions below on your own, review the material above to find the answer.

Additional resources

This section contains helpful links to other content. It isn’t required, so consider it supplemental.

  • Emmet Keybindings by Andrés Gutiérrez, is a set of Emmet keybinds for Visual Studio Code. It can be used as a pre-defined group of keybinds, in case you don’t know what to map to which keys.

  • Emmet Live by Yurii Semeniuk, is another extension in Visual Studio Code. It can continually generate the corresponding HTML structure while you’re editing Emmet abbreviations. For the desired outcome, try selecting a random piece of text before calling out this extension.

Support us!

The Odin Project is funded by the community. Join us in empowering learners around the globe by supporting The Odin Project!