Insert tab after some text instead of expanding when emmet expansion is on in VS Code

160 Views Asked by At

In VS code, when emmet.triggerExpansionOnTab is on I can write something like "div", then press [tab] to generate a HTML tag like this:

<div></div>

Which is very useful, but it also happens when I press [tab] anywhere, If I write "something" and press [tab] I get this:

<something></something>

I would like to be able to create tags and ALSO be able to insert regular tabs (\t) after any word.

Is there a hotkey or something to insert a regular tab after some text without creating a tag?

0

There are 0 best solutions below