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

Add CSS var() hovers when using v4 #1289

Merged
merged 7 commits into from
Apr 2, 2025
Merged

Conversation

thecrypticace
Copy link
Contributor

@thecrypticace thecrypticace commented Mar 27, 2025

This adds support for hovering over things like var(--color-red-500) or var(--breakpoint-xl) and showing the value from the theme like we already support with the theme() function.

Additionally, I've improved the hovers for v4 theme keys. They now appear in a @theme block like you'd see them in your CSS and are also syntax highlighted.

Before:
Screenshot 2025-03-31 at 13 07 30

After:
Screenshot 2025-03-31 at 13 07 13

@thecrypticace thecrypticace marked this pull request as draft March 27, 2025 20:19
@thecrypticace thecrypticace force-pushed the feat/css-var-hover-in-v4 branch 2 times, most recently from 829fecc to 2bcf851 Compare March 31, 2025 17:01
@thecrypticace thecrypticace force-pushed the feat/css-var-hover-in-v4 branch from 2bcf851 to 197092b Compare March 31, 2025 17:04
@thecrypticace thecrypticace requested a review from Copilot March 31, 2025 17:08
Copy link

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR adds support for CSS var() hovers when using v4. It enhances the hovers by detecting CSS custom property calls (var()) and displaying the corresponding theme value inside a CSS @theme block with syntax highlighting.

  • Updated CHANGELOG with var() hover support and improved hover formatting.
  • Extended helper matching and type definitions in state and find modules.
  • Modified hoverProvider and diagnostics to accommodate var() hovers and added relevant tests in the hover test suite.

Reviewed Changes

Copilot reviewed 6 out of 6 changed files in this pull request and generated no comments.

Show a summary per file
File Description
packages/vscode-tailwindcss/CHANGELOG.md Updated changelog with information about var() hover support and improved @theme hover output.
packages/tailwindcss-language-service/src/util/state.ts Added 'var' as a valid helper type.
packages/tailwindcss-language-service/src/util/find.ts Extended regex to detect 'var' helper and updated type handling.
packages/tailwindcss-language-service/src/hoverProvider.ts Added conditional logic to format var() hovers in a CSS @theme block.
packages/tailwindcss-language-service/src/diagnostics/getInvalidConfigPathDiagnostics.ts Skips validation for var() helper functions.
packages/tailwindcss-language-server/tests/hover/hover.test.js Added tests to verify the hover output for var() and theme calls.
Comments suppressed due to low confidence (1)

packages/tailwindcss-language-server/tests/hover/hover.test.js:559

  • [nitpick] The test name 'wip' is ambiguous; consider using a more descriptive name to clearly indicate the test scenario being validated.
  name: 'wip',

@thecrypticace
Copy link
Contributor Author

Copilot you could at least have the decency to wrap at-rule names in backticks 🤦‍♂️

@thecrypticace thecrypticace marked this pull request as ready for review March 31, 2025 17:11
@thecrypticace thecrypticace merged commit 778b449 into main Apr 2, 2025
12 checks passed
@thecrypticace thecrypticace deleted the feat/css-var-hover-in-v4 branch April 2, 2025 14:19
thecrypticace added a commit that referenced this pull request Apr 2, 2025
This adds support for hovering over things like `var(--color-red-500)` or `var(--breakpoint-xl)` and showing the value from the theme like we already support with the `theme()` function.

Additionally, I've improved the hovers for v4 theme keys. They now appear in a `@theme` block like you'd see them in your CSS and are also syntax highlighted.
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 this pull request may close these issues.

2 participants