From ea375f478f5a4b23d4d8225d9dfaf6f4cde65ff3 Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Tue, 17 Jan 2017 10:29:26 -0500 Subject: [PATCH] Fixes issue with latest insiders build - namespaces DocumentScheme Changes from git to gitlens-git --- src/constants.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/constants.ts b/src/constants.ts index 7e4566b..d5208fa 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -29,10 +29,10 @@ export const Commands = { ToggleCodeLens: 'gitlens.toggleCodeLens' as Commands }; -export type DocumentSchemes = 'file' | 'git' | 'git-blame'; +export type DocumentSchemes = 'file' | 'gitlens-git'; export const DocumentSchemes = { File: 'file' as DocumentSchemes, - Git: 'git' as DocumentSchemes + Git: 'gitlens-git' as DocumentSchemes }; export type WorkspaceState = 'repoPath';