Luca Guarro
Luca Guarro

Reputation: 1168

How can I use emmet's lorem ipsum functionality in latex files for visual studio code?

I want emmet to work for my latex files as well.

I have been trying to follow the documentation here but it is not exactly clear to me what exactly the language identifiers are and where they are defined. Here they display a list of the language identifiers but still I do not know what is expected on either side of the key-value pair.

This is what I have tried: In my settings.json file, I added the following

"emmet.includeLanguages": {
    "latex": "latex"
}

Upvotes: 0

Views: 454

Answers (1)

rioV8
rioV8

Reputation: 28633

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

The second language is the mode you want Emmet to be and has to be an already supported language id.

Upvotes: 1

Related Questions