From b1a4dfdcfdd78ffadc6cbe0b8602219e227ab034 Mon Sep 17 00:00:00 2001 From: Matt Bierner Date: Mon, 30 Jan 2023 08:39:43 -0800 Subject: [PATCH] TS should ignore `github:` files (#172603) Fixes #172597 --- .../typescript-language-features/src/utils/fileSchemes.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/extensions/typescript-language-features/src/utils/fileSchemes.ts b/extensions/typescript-language-features/src/utils/fileSchemes.ts index da45a361012..66d9b0aa3f3 100644 --- a/extensions/typescript-language-features/src/utils/fileSchemes.ts +++ b/extensions/typescript-language-features/src/utils/fileSchemes.ts @@ -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'; @@ -30,5 +32,6 @@ export const semanticSupportedSchemes = isWeb() && vscode.workspace.workspaceFol */ export const disabledSchemes = new Set([ git, - vsls + vsls, + github, ]);