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 31393e6 commit dcd28dfCopy full SHA for dcd28df
packages/tailwindcss-language-service/src/util/lexers.ts
@@ -66,6 +66,7 @@ export const getClassAttributeLexer = lazy(() => {
66
start1: { match: '"', push: 'doubleClassList' },
67
start2: { match: "'", push: 'singleClassList' },
68
start3: { match: '{', push: 'interpBrace' },
69
+ start4: { match: '`', push: 'tickClassList' },
70
},
71
...classAttributeStates(),
72
})
@@ -88,6 +89,7 @@ export const getComputedClassAttributeLexer = lazy(() => {
88
89
lbrace: { match: '{', push: 'interpBrace' },
90
single: { match: "'", push: 'interpSingle' },
91
double: { match: '"', push: 'interpDouble' },
92
+ tick: { match: '`', push: 'tickClassList' },
93
94
95
0 commit comments