Disable js/ts features for the private scheme

This scheme is used internally by VS Code for features such as search/replace preview
This commit is contained in:
Matt Bierner
2020-09-01 15:07:05 -07:00
parent 6fee049076
commit b8e4718a12

View File

@@ -6,6 +6,8 @@
export const file = 'file';
export const untitled = 'untitled';
export const git = 'git';
export const privateScheme = 'private';
/** Live share scheme */
export const vsls = 'vsls';
export const walkThroughSnippet = 'walkThroughSnippet';
@@ -20,5 +22,6 @@ export const semanticSupportedSchemes = [
*/
export const disabledSchemes = new Set([
git,
vsls
vsls,
privateScheme,
]);