Skip to content

Commit 6857414

Browse files
Match custom class regex in Vue templates (#1194)
Fixes #1066 Looks like I unintentionally broke this in #930 quite a while ago
1 parent 86dd3a3 commit 6857414

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

packages/tailwindcss-language-service/src/util/find.ts

+4-3
Original file line numberDiff line numberDiff line change
@@ -270,10 +270,11 @@ export async function findClassListsInRange(
270270
range?: Range,
271271
mode?: 'html' | 'css' | 'jsx',
272272
includeCustom: boolean = true,
273+
lang?: string,
273274
): Promise<DocumentClassList[]> {
274275
let classLists: DocumentClassList[] = []
275276
if (mode === 'css') {
276-
classLists = findClassListsInCssRange(state, doc, range)
277+
classLists = findClassListsInCssRange(state, doc, range, lang)
277278
} else if (mode === 'html' || mode === 'jsx') {
278279
classLists = await findClassListsInHtmlRange(state, doc, mode, range)
279280
}
@@ -448,11 +449,11 @@ export async function findClassNameAtPosition(
448449
let groups = await Promise.all(
449450
boundaries.map(async ({ type, range, lang }) => {
450451
if (type === 'css') {
451-
return findClassListsInCssRange(state, doc, range, lang)
452+
return await findClassListsInRange(state, doc, range, 'css', true, lang)
452453
}
453454

454455
if (type === 'html') {
455-
return await findClassListsInHtmlRange(state, doc, 'html', range)
456+
return await findClassListsInRange(state, doc, range, 'html')
456457
}
457458

458459
if (type === 'js' || type === 'jsx') {

packages/vscode-tailwindcss/CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
- Show warning when loading a config in v3 fails ([#1191](https://github.com/tailwindlabs/tailwindcss-intellisense/pull/1191))
1414
- Better handle really long class lists in attributes and custom regexes ([#1192](https://github.com/tailwindlabs/tailwindcss-intellisense/pull/1192))
1515
- Add support for Astro’s template literal attributes ([#1193](https://github.com/tailwindlabs/tailwindcss-intellisense/pull/1193))
16+
- Match custom class regex in Vue templates ([#1194](https://github.com/tailwindlabs/tailwindcss-intellisense/pull/1194))
1617

1718
## 0.14.3
1819

0 commit comments

Comments
 (0)