react-cva icon indicating copy to clipboard operation
react-cva copied to clipboard

Add Tailwind CSS IntelliSense snippet to readme

Open G3root opened this issue 3 years ago • 2 comments

tailwind vscode extension has a experimental support for autocompletion by custom regex, add a working snippet to README

for reference https://github.com/joe-bell/cva#tailwind-css-intellisense

G3root avatar Mar 16 '22 10:03 G3root

@G3root this would be super useful if possible

alanonthegit avatar Apr 17 '22 06:04 alanonthegit

Would the below work?

{
  "tailwindCSS.experimental.classRegex": [
    ["styled\\(([^)]*)\\)", "[\"'`]([^\"'`]*).*?[\"'`]"]
  ]
}

I took this from stylemapper's docs since I believe the regex is pretty similiar

kndwin avatar Mar 22 '23 00:03 kndwin