Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

This extension disables VS Code's IntelliSense for CSS: #12

Open
twoco opened this issue Feb 21, 2022 · 6 comments
Open

This extension disables VS Code's IntelliSense for CSS: #12

twoco opened this issue Feb 21, 2022 · 6 comments

Comments

@twoco
Copy link

twoco commented Feb 21, 2022

When the extension is enabled, it's a pain to write css code. No IntelliSense / no autocomplete / no errors / warnings / etc. Similar as using the Notepad from Windows.

demo

The following is set. But emmet alone is not enough. How to enable IntelliSense?

{
  "emmet.includeLanguages": {
    "postcss": "css"
  }
}

sstools.postcss: v1.0.9
vscode: v1.64.2 (Windows 10)

@kytosai
Copy link

kytosai commented Apr 2, 2022

Mee too

@jonathantneal
Copy link
Collaborator

It’s coming back.

@FrozenAlex
Copy link

When? xD I really do depend on it

@Wiz1991
Copy link

Wiz1991 commented Aug 4, 2022

This has been an issue from 2019

Any plans on supporting this?

@NanoAi
Copy link

NanoAi commented Jan 22, 2023

Not sure why this is still an issue... but here's a quick and dirty fix that seems to work well for me.

{
    "files.associations": {
        "*.css": "tailwindcss",
        "*.pcss": "scss"
    },
    "scss.lint.unknownAtRules": "ignore",
    "emmet.includeLanguages": {
        "postcss": "css"
    }
}

This basically makes your editor see "pcss" files as "scss" files... and in my experience just works.
image

However... You might as well just disable the extension at this point...

@xiaohk
Copy link

xiaohk commented Aug 19, 2023

I faced the same problem, and replacing postcss-language with this plugin solved it perfectly!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

7 participants