TS should ignore github: files (#172603)

Fixes #172597
This commit is contained in:
Matt Bierner
2023-01-30 08:39:43 -08:00
committed by GitHub
parent 4e0f349a7b
commit b1a4dfdcfd
@@ -9,6 +9,8 @@ import * as vscode from 'vscode';
export const file = 'file'; export const file = 'file';
export const untitled = 'untitled'; export const untitled = 'untitled';
export const git = 'git'; export const git = 'git';
export const github = 'github';
/** Live share scheme */ /** Live share scheme */
export const vsls = 'vsls'; export const vsls = 'vsls';
export const walkThroughSnippet = 'walkThroughSnippet'; export const walkThroughSnippet = 'walkThroughSnippet';
@@ -30,5 +32,6 @@ export const semanticSupportedSchemes = isWeb() && vscode.workspace.workspaceFol
*/ */
export const disabledSchemes = new Set([ export const disabledSchemes = new Set([
git, git,
vsls vsls,
github,
]); ]);