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.

getting html autocompletes (such as css) to work

See original GitHub issue

Did anyone get basic autocomplete of CSS class names and other HTML attributes to work with this plugin? I’m only getting emmet to work by adding

  "emmet.includeLanguages": {
    "HTML (EEx)": "html"
  },

but autocompletes like image

are not working (tried both master versions of bradlc.vscode-tailwindcss and ecmel.vscode-html-css)

Issue Analytics

  • State:closed
  • Created 4 years ago
  • Comments:7 (3 by maintainers)

github_iconTop GitHub Comments

2reactions
jayjuncommented, Jul 6, 2020

The extension has switched to html-eex. Do this instead.

"emmet.includeLanguages": {
  "html-eex": "html"
}
1reaction
douglascorreacommented, Jul 6, 2020

Sorry, I didn’t realize there was another PR: https://github.com/elixir-lsp/vscode-elixir-ls/pull/87 which change the configuration.

now you should put:

  "emmet.includeLanguages": {
    "html-eex": "html",
  },

And this is working 😃

Read more comments on GitHub >

github_iconTop Results From Across the Web

HTML attribute: autocomplete - MDN Web Docs
The HTML autocomplete attribute lets web developers specify what if any permission the user agent has to provide automated assistance in filling out...
Read more >
autofill - CSS-Tricks
The :auto-fill pseudo-class in CSS allows us to style <input> elements that contain content auto-filled by the browser.
Read more >
HTML autocomplete Attribute - W3Schools
The autocomplete attribute specifies whether a form or an input field should have autocomplete on or off. Autocomplete allows the browser to predict...
Read more >
Override browser form-filling and input highlighting with HTML ...
You can disable auto-completion as of HTML5 (via autocomplete="off" ), but you ...
Read more >
Autofill - web.dev
Use the :autofill CSS pseudo-class to style form controls that the browser has autofilled. Use :autofill and the prefixed version :-webkit-autofill for best ......
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