vscode-xml/src/common/create-document-selector.ts
Josh Johnson 9e47281d91 Support LiveShare
Implements the changes from #154.

Co-Authored-By: Jonathan Carter <joncart@microsoft.com>
2018-04-28 21:15:20 -04:00

8 lines
221 B
TypeScript

import { DocumentFilter } from "vscode";
export function createDocumentSelector(language: string): DocumentFilter[] {
return [
{ language, scheme: "file" },
{ language, scheme: "untitled" },
];
}