From 825b06739179f481b61809b13e1291dc966f6872 Mon Sep 17 00:00:00 2001 From: Brad Cornes Date: Mon, 29 Jun 2020 19:06:14 +0100 Subject: [PATCH] remove class list length limit (#136) --- src/lsp/util/find.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lsp/util/find.ts b/src/lsp/util/find.ts index b642534..db5609e 100644 --- a/src/lsp/util/find.ts +++ b/src/lsp/util/find.ts @@ -133,7 +133,7 @@ export function findClassListsInHtmlRange( const result: DocumentClassList[] = [] matches.forEach((match) => { - const subtext = text.substr(match.index + match[0].length - 1, 200) + const subtext = text.substr(match.index + match[0].length - 1) let lexer = match[0][0] === ':'