Revert "Restrict html/css to only handling file and untitled files. Part of #48777"

This reverts commit 0dfeec2eef.
This commit is contained in:
Pine Wu
2018-05-02 10:13:29 -07:00
parent c26adc1916
commit e4e7c25708
3 changed files with 3 additions and 22 deletions

View File

@@ -47,14 +47,7 @@ export function activate(context: ExtensionContext) {
debug: { module: serverModule, transport: TransportKind.ipc, options: debugOptions }
};
let documentSelector = [
{ language: 'html', scheme: 'file' },
{ language: 'html', scheme: 'untitled' },
{ language: 'handlebars', scheme: 'file' },
{ language: 'handlebars', scheme: 'untitled' },
{ language: 'razor', scheme: 'file' },
{ language: 'razor', scheme: 'untitled' }
];
let documentSelector = ['html', 'handlebars', 'razor'];
let embeddedLanguages = { css: true, javascript: true };
// Options to control the language client