Skip to content

Neovim: Suggestions and hover are broken for the latest update #1034

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

Closed
zackAJ opened this issue Aug 25, 2024 · 3 comments · Fixed by #1043
Closed

Neovim: Suggestions and hover are broken for the latest update #1034

zackAJ opened this issue Aug 25, 2024 · 3 comments · Fixed by #1043
Assignees

Comments

@zackAJ
Copy link

zackAJ commented Aug 25, 2024

What version of VS Code are you using?

NVIM v0.10.0

What version of Tailwind CSS IntelliSense are you using?

v0.12.7

What version of Tailwind CSS are you using?

v3.2.1

What package manager are you using?

npm (via Mason) v0.0.23

What operating system are you using?

Linux

Tailwind config

import defaultTheme from 'tailwindcss/defaultTheme';
import forms from '@tailwindcss/forms';

/** @type {import('tailwindcss').Config} */
export default {
  important: true,
  content: [
    `${process.env.PWD}/index.html`,
    `${process.env.PWD}/src/**/*.{vue,js,ts,jsx,tsx}`,
    `${process.env.PWD}/vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php`,
    `${process.env.PWD}/storage/framework/views/*.php`,
    `${process.env.PWD}/resources/views/**/*.blade.php`,
  ],

  theme: {
    extend: {
      fontFamily: {
        sans: ['Figtree', ...defaultTheme.fontFamily.sans],
      },
      colors: {
        "primary" : "#1976D2",
        "secondary" : "#002FA6",
        "accent" : "#9C27B0",
        "dark" : "#1D1D1D",
        "dark-page" : "#121212",
        "positive" : "#21BA45",
        "negative" : "#C10015",
        "info" : "#31CCEC",
        "warning" : "#F2C037",
      }
    },
  },

  plugins: process.env.PWD.includes("front") ? [] : [forms]
};

Neovim settings

    tailwindcss = { filetypes = { "html", "blade", "vue" } },

Reproduction URL
None

Describe your issue

I get no suggestions and no hover, client is attached to the buffer.
image
when downgrading to the previous version it works fine

@zackAJ
Copy link
Author

zackAJ commented Aug 25, 2024

for Mason users downgrade using this command until it's fixed:
image

:MasonInstall tailwindcss-language-server@0.0.22

@philipp-spiess
Copy link
Member

philipp-spiess commented Aug 28, 2024

Hey @zackAJ! Thanks for reporting this and sorry for the troubles! We just released v0.0.24 of the language server that resolves this issue. Please let us know if there are still issues.

@zackAJ
Copy link
Author

zackAJ commented Aug 28, 2024

Hey @zackAJ! Thanks for reporting this and sorry for the troubles! We just released v0.0.24 of the language server that resolves this issue. Please let us know if there are still issues.

it is fixed thank you guys, if I encounter trouble I'll let you know

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

Successfully merging a pull request may close this issue.

2 participants