Skip to content

Commit

Permalink
Disable js/ts features for the private scheme
Browse files Browse the repository at this point in the history
This scheme is used internally by VS Code for features such as search/replace preview
  • Loading branch information
mjbvz committed Sep 1, 2020
1 parent 6fee049 commit b8e4718
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
export const file = 'file';
export const untitled = 'untitled';
export const git = 'git';
export const privateScheme = 'private';

/** Live share scheme */
export const vsls = 'vsls';
export const walkThroughSnippet = 'walkThroughSnippet';
Expand All @@ -20,5 +22,6 @@ export const semanticSupportedSchemes = [
*/
export const disabledSchemes = new Set([
git,
vsls
vsls,
privateScheme,
]);

0 comments on commit b8e4718

Please sign in to comment.