Skip to content

Commit 825b067

Browse files
committed
remove class list length limit (tailwindlabs#136)
1 parent dda7a7b commit 825b067

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lsp/util/find.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ export function findClassListsInHtmlRange(
133133
const result: DocumentClassList[] = []
134134

135135
matches.forEach((match) => {
136-
const subtext = text.substr(match.index + match[0].length - 1, 200)
136+
const subtext = text.substr(match.index + match[0].length - 1)
137137

138138
let lexer =
139139
match[0][0] === ':'

0 commit comments

Comments
 (0)