Exclude pr schemed files from js/ts language features

Fixes #105842
This commit is contained in:
Matt Bierner 2020-09-02 10:36:24 -07:00
parent 495b05c1de
commit 3dc43cb7b3

View file

@ -6,8 +6,8 @@
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 pr = 'pr';
export const privateScheme = 'private'; export const privateScheme = 'private';
/** Live share scheme */ /** Live share scheme */
export const vsls = 'vsls'; export const vsls = 'vsls';
export const walkThroughSnippet = 'walkThroughSnippet'; export const walkThroughSnippet = 'walkThroughSnippet';
@ -24,4 +24,5 @@ export const disabledSchemes = new Set([
git, git,
vsls, vsls,
privateScheme, privateScheme,
pr,
]); ]);