tweaks
parent
7f77a9ebfa
commit
a8e6a9ac01
|
@ -52,6 +52,11 @@ export async function activate(context: vscode.ExtensionContext) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!tw) {
|
||||||
|
intellisense.dispose()
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
intellisense.reload(tw)
|
intellisense.reload(tw)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -132,9 +137,11 @@ function createCompletionItemProvider(
|
||||||
// e.g. .flex.items-center
|
// e.g. .flex.items-center
|
||||||
let lineText = text.split('\n').pop()
|
let lineText = text.split('\n').pop()
|
||||||
matches = lineText.match(/\.([^()#>*^ \[\]=$@{}]*)$/i)
|
matches = lineText.match(/\.([^()#>*^ \[\]=$@{}]*)$/i)
|
||||||
|
if (matches) {
|
||||||
let parts = matches[matches.length - 1].split('.')
|
let parts = matches[matches.length - 1].split('.')
|
||||||
str = parts[parts.length - 1]
|
str = parts[parts.length - 1]
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (typeof str !== 'undefined') {
|
if (typeof str !== 'undefined') {
|
||||||
const pth = str
|
const pth = str
|
||||||
|
|
Loading…
Reference in New Issue