Browse Source

Fixes issue with latest insiders build - namespaces DocumentScheme

Changes from git to gitlens-git
main
Eric Amodio 7 years ago
parent
commit
ea375f478f
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/constants.ts

+ 2
- 2
src/constants.ts View File

@ -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';

Loading…
Cancel
Save