Skip to content

Commit

Permalink
TS should ignore github: files (#172603)
Browse files Browse the repository at this point in the history
Fixes #172597
  • Loading branch information
mjbvz authored Jan 30, 2023
1 parent 4e0f349 commit b1a4dfd
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ import * as vscode from 'vscode';
export const file = 'file';
export const untitled = 'untitled';
export const git = 'git';
export const github = 'github';

/** Live share scheme */
export const vsls = 'vsls';
export const walkThroughSnippet = 'walkThroughSnippet';
Expand All @@ -30,5 +32,6 @@ export const semanticSupportedSchemes = isWeb() && vscode.workspace.workspaceFol
*/
export const disabledSchemes = new Set([
git,
vsls
vsls,
github,
]);

0 comments on commit b1a4dfd

Please sign in to comment.