We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fee049 commit b8e4718Copy full SHA for b8e4718
1 file changed
extensions/typescript-language-features/src/utils/fileSchemes.ts
@@ -6,6 +6,8 @@
6
export const file = 'file';
7
export const untitled = 'untitled';
8
export const git = 'git';
9
+export const privateScheme = 'private';
10
+
11
/** Live share scheme */
12
export const vsls = 'vsls';
13
export const walkThroughSnippet = 'walkThroughSnippet';
@@ -20,5 +22,6 @@ export const semanticSupportedSchemes = [
20
22
*/
21
23
export const disabledSchemes = new Set([
24
git,
- vsls
25
+ vsls,
26
+ privateScheme,
27
]);
0 commit comments