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

emmet not woking well in vscode #9

Open
littlee opened this issue Jun 27, 2021 · 7 comments
Open

emmet not woking well in vscode #9

littlee opened this issue Jun 27, 2021 · 7 comments

Comments

@littlee
Copy link

littlee commented Jun 27, 2021

in postcss mode, typing 'col' always has only ONE suggestion

image

in css mode, typing 'col' gets MANY suggestions, which is good.

image

@LeaVerou
Copy link

LeaVerou commented Oct 8, 2021

For me Emmet is not working at all in PostCSS. E.g. I type fz(Tab) and nothing happens, whereas it works fine in CSS.

@honi
Copy link

honi commented Nov 30, 2021

I'm having the same issue as well. Has anybody found a solution?

@ZackPlauche
Copy link

ZackPlauche commented Dec 9, 2021

Yeah, emmet literally doesn't use any of the builtin css stuff once this plugin is installed. I just uninstalled it and now my css files work again, and don't give me @apply or whatever errors. 🤷‍♂️. Maybe just the tailwind plugin is good enough.

@chriskoelle
Copy link

you can fix this by adding postcss to the emmet.includeLanguages setting in your vscode preferences:

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

https://marketplace.visualstudio.com/items?itemName=csstools.postcss#adding-support-for-emmet

@kushagra-unorg
Copy link

you can fix this by adding postcss to the emmet.includeLanguages setting in your vscode preferences:

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

https://marketplace.visualstudio.com/items?itemName=csstools.postcss#adding-support-for-emmet

After doing this, the emmet is working but it is giving only some suggestions

@mnzulfahmi17
Copy link

you can fix this by adding postcss to the emmet.includeLanguages setting in your vscode preferences:

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

https://marketplace.visualstudio.com/items?itemName=csstools.postcss#adding-support-for-emmet

After doing this, the emmet is working but it is giving only some suggestions

Same, not working fully yet, but this helpfull for now.. i hope more solution to fixed and working fully

@jorgeart81
Copy link

Adding css to the files.associations setting in your settings.json:

}
"files.associations": { "*.css": "css" },

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

8 participants