mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-02 14:31:31 +01:00
Do not lookahead when extracting css abbreviations Fixes #46452
This commit is contained in:
@@ -28,7 +28,7 @@ export class DefaultCompletionItemProvider implements vscode.CompletionItemProvi
|
||||
}
|
||||
|
||||
const helper = getEmmetHelper();
|
||||
const extractAbbreviationResults = helper.extractAbbreviation(document, position);
|
||||
const extractAbbreviationResults = helper.extractAbbreviation(document, position, !isStyleSheet(syntax));
|
||||
if (!extractAbbreviationResults) {
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user