question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Emmet 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:open
  • Created 3 years ago
  • Reactions:2
  • Comments:11 (8 by maintainers)

github_iconTop GitHub Comments

1reaction
jabbycommented, Aug 26, 2020

I think we can check what is done in svelte-language-server. It basically use getEmmetCompletionParticipants from ‘vscode-emmet-helper’ inside the language server. See HTML plugin

1reaction
mickaelistriacommented, Aug 26, 2020

I 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.

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found