mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-02 14:31:31 +01:00
Allow emmet autocompletion when no parent node Fixes #38973
This commit is contained in:
@@ -118,7 +118,7 @@ export class DefaultCompletionItemProvider implements vscode.CompletionItemProvi
|
||||
}
|
||||
}
|
||||
|
||||
if (!currentNode || !isValidLocationForEmmetAbbreviation(currentNode, syntax, position)) {
|
||||
if (!isValidLocationForEmmetAbbreviation(currentNode, syntax, position)) {
|
||||
return;
|
||||
}
|
||||
return syntax;
|
||||
|
||||
Reference in New Issue
Block a user