Refresh master with initial release/0.24 snapshot (#332)

* Initial port of release/0.24 source code

* Fix additional headers

* Fix a typo in launch.json
This commit is contained in:
Karl Burtram
2017-12-15 15:38:57 -08:00
committed by GitHub
parent 271b3a0b82
commit 6ad0df0e3e
7118 changed files with 107999 additions and 56466 deletions

View File

@@ -6,12 +6,12 @@
'use strict';
import URI from 'vs/base/common/uri';
import { match as matchGlobPattern } from 'vs/base/common/glob'; // TODO@Alex
import { match as matchGlobPattern, IRelativePattern } from 'vs/base/common/glob'; // TODO@Alex
export interface LanguageFilter {
language?: string;
scheme?: string;
pattern?: string;
pattern?: string | IRelativePattern;
}
export type LanguageSelector = string | LanguageFilter | (string | LanguageFilter)[];