Emmet completions in script of type text/template

This commit is contained in:
Ramya Achutha Rao
2017-10-30 10:47:37 -07:00
parent dfaaba9911
commit a3aa704423

View File

@@ -9,7 +9,7 @@ import { doComplete, isStyleSheet, getEmmetMode, extractAbbreviation } from 'vsc
import { isValidLocationForEmmetAbbreviation } from './abbreviationActions';
import { getNode, getInnerRange, getMappingForIncludedLanguages, parseDocument, getEmmetConfiguration } from './util';
const allowedMimeTypesInScriptTag = ['text/html', 'text/plain', 'text/x-template'];
const allowedMimeTypesInScriptTag = ['text/html', 'text/plain', 'text/x-template', 'text/template'];
export class DefaultCompletionItemProvider implements vscode.CompletionItemProvider {