Fix Emmet abbreviation for Handlebars style blocks (#118832)

Co-authored-by: Abhijeet Joshi <abhjos@microsoft.com>
This commit is contained in:
Abhijeet Joshi 2021-03-13 01:24:16 +05:30 committed by GitHub
parent 257fbae3f3
commit b81cea2a35
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -67,7 +67,7 @@ export class DefaultCompletionItemProvider implements vscode.CompletionItemProvi
const lsDoc = toLSTextDocument(document);
position = document.validatePosition(position);
if (document.languageId === 'html') {
if (syntax === 'html') {
if (context.triggerKind === vscode.CompletionTriggerKind.TriggerForIncompleteCompletions) {
switch (this.lastCompletionType) {
case 'html':