Emmet support
See original GitHub issueEmmet is an editor plug-in for many IDEs / editors that supports quick generation of HTML. For example
section.break>h1+ul>li*5
expands to
<section class="break">
<h1></h1>
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</section>
It would be very useful to have something like this in Eclipse as well.
Issue Analytics
- State:
- Created 3 years ago
- Reactions:2
- Comments:11 (8 by maintainers)
Top Results From Across the Web
Emmet — the essential toolkit for web-developers
Emmet — the essential toolkit for web-developers · HTML from CSS · Dynamic snippets · Ultra-fast coding · Customizable · Platform for new...
Read more >Emmet in Visual Studio Code
Support for Emmet snippets and expansion is built right into Visual Studio Code, no extension required. Emmet 2.0 has support for the majority...
Read more >Emmet | IntelliJ IDEA Documentation - JetBrains
The Emmet toolkit enhances coding with HTML, CSS, and JSX. ... IntelliJ IDEA supports such features as new syntax for writing RGBA colors, ......
Read more >Emmet (software) - Wikipedia
Emmet (formerly Zen Coding) is a set of plug-ins for text editors that allow for high-speed coding and editing in HTML, XML, XSLT,...
Read more >Enable Emmet support for React in VS Code
Back in the day in 1965 (just kidding I mean 2019) when I was writing plain HTML in VS Code I used...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

I think we can check what is done in svelte-language-server. It basically use
getEmmetCompletionParticipantsfrom ‘vscode-emmet-helper’ inside the language server. See HTML pluginI see Emmet can do some HTML or CSS templating, not sure LemMinX would like to get into the direction of being a LS for non-XML languages.