[html] Request textDocument/rangeFormatting failed when pasting inside script tags. Fixes #35698

This commit is contained in:
Martin Aeschlimann
2017-11-20 11:01:51 +01:00
parent 93706d88c1
commit b520c8f1ca
7 changed files with 19 additions and 16 deletions

View File

@@ -60,6 +60,7 @@ export function getHTMLMode(htmlLanguageService: HTMLLanguageService): LanguageM
if (offset > 0 && text.charAt(offset - 1).match(/[>\/]/g)) {
return htmlLanguageService.doTagComplete(document, position, htmlDocuments.get(document));
}
return null;
},
onDocumentRemoved(document: TextDocument) {
htmlDocuments.onDocumentRemoved(document);