Support LiveShare

Implements the changes from #154.

Co-Authored-By: Jonathan Carter <joncart@microsoft.com>
This commit is contained in:
Josh Johnson 2018-04-28 21:15:20 -04:00
parent 29756e3f97
commit 9e47281d91
3 changed files with 24 additions and 4 deletions

View file

@ -0,0 +1,8 @@
import { DocumentFilter } from "vscode";
export function createDocumentSelector(language: string): DocumentFilter[] {
return [
{ language, scheme: "file" },
{ language, scheme: "untitled" },
];
}