update class attribute regex (#125)

master
Brad Cornes 2020-06-12 12:29:04 +01:00
parent cd444aba6c
commit cfd4e4fd07
2 changed files with 2 additions and 2 deletions

View File

@ -126,7 +126,7 @@ function provideClassAttributeCompletions(
end: position,
})
const match = findLast(/[\s:]class(?:Name)?=['"`{]/gi, str)
const match = findLast(/(?:\b|:)class(?:Name)?=['"`{]/gi, str)
if (match === null) {
return null

View File

@ -101,7 +101,7 @@ export function findClassListsInHtmlRange(
range: Range
): DocumentClassList[] {
const text = doc.getText(range)
const matches = findAll(/[\s:]class(?:Name)?=['"`{]/g, text)
const matches = findAll(/(?:\b|:)class(?:Name)?=['"`{]/g, text)
const result: DocumentClassList[] = []
matches.forEach((match) => {