mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-19 08:08:39 +01:00
Revert "Restrict html/css to only handling file and untitled files. Part of #48777"
This reverts commit 0dfeec2eef.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user