We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f411e3 commit f3f1b3bCopy full SHA for f3f1b3b
packages/tailwindcss-language-server/src/providers/hoverProvider.ts
@@ -40,7 +40,7 @@ function provideCssHelperHover(
40
41
if (match === null) return null
42
43
- const startChar = match.index + 7
+ const startChar = match.index + match.groups.helper.length + 2
44
const endChar = startChar + match.groups.key.length
45
46
if (position.character < startChar || position.character >= endChar) {
0 commit comments