Replies: 2 comments
-
That looks about right. Does
|
Beta Was this translation helpful? Give feedback.
0 replies
-
The above config almost worked for me, but I had to tell the tailwind lsp how to handle rust files with a language from here Something like this seem to work: lsp.configure('tailwindcss', {
init_options = {
userLanguages = {
rust = "html",
}
},
filetypes = {
"html",
"javascriptreact",
"typescriptreact",
"rescript",
"vue",
"svelte",
"rust"
},
})
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello !
I am trying to make the tailwindcss lsp start for rust files. I tried to do this
However, when I run the
:LspInfo
on a rust file inside a rust project (with atailwind.config.js
file), the tailwindcss lsp doesn't seems to be running.Am I doing something wrong ?
What could I do to debug the issue ?
Beta Was this translation helpful? Give feedback.
All reactions