vscode-cssvar icon indicating copy to clipboard operation
vscode-cssvar copied to clipboard

VSCode extension to support CSS Variables Intellisense

Results 31 vscode-cssvar issues
Sort by recently updated
recently updated
newest added

This extension already supports a minimal setup, i.e. ```jsonc "cssvar.postcssPlugins": [ "tailwindcss/nesting", "tailwindcss" ] ``` This works and it also detects CSS variables dynamically created by **_TailwindCSS plugins_**: --- ##...

enhancement

Default way of defining plugins using `postcss.config` file: ```jsonc { "plugins: { "autoprefixer": {} // Pass Options as object property value. } } ``` Below is a syntax that Eslint...

enhancement
non-critical

Currently, this extension does not integrate properly with VSCode's Settings UI. We need to at least support properties which can use the Settings UI.

enhancement
good first issue
nice-to-have

Need to test if this issue: https://github.com/stylelint/postcss-css-in-js/issues/294#issue-1331267970 is because of this extension or an issue with postcss parser itself. If it's the latter, will close the issue here, as minimal...

bug

https://user-images.githubusercontent.com/11786283/183144934-e69e7020-59ed-45f6-b8de-924c6003bfc2.mp4

bug
non-critical

As `postcss-scss` parser only parses the syntax and does not evaluate it, some of the SCSS variable might get missed if they are present inside [SCSS at-rules](https://sass-lang.com/documentation/at-rules). For e.g. the...

good first issue
nice-to-have

`@import` can support a lot of types of CSS functions, and when used with `url` function, it can also be used to fetch CSS from remote URLs. E.g. ```css @import...

enhancement
good first issue
critical

`cssvar.ignore` can be tedious to maintain, and ignore list can be random for different projects. Adding support for `.gitignore` and `.eslintignore` files opens an opportunity to keep less things inside...

enhancement
good first issue
breaking-change

VSCode has started to push CSS Variables into the auto-complete list, when the variables are defined in the same file that a user is working on. This causes unnecessary duplicates...

bug
breaking-change

![image](https://user-images.githubusercontent.com/1200923/193136433-bf782a93-7260-4773-93cc-5104c87eaef4.png) ![image](https://user-images.githubusercontent.com/1200923/193137266-6d7436da-8eea-45c1-91d3-21b2bb924e09.png) I tend to use the same variable names on many CSS files. It happens that when I type --, your extension shows a huge list of variables with...

bug
breaking-change