Browse Source

Fixes missing context

main
Eric Amodio 7 years ago
parent
commit
3b195b6be2
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/commands/common.ts

+ 1
- 1
src/commands/common.ts View File

@ -46,7 +46,7 @@ export const Commands = {
ToggleCodeLens: 'gitlens.toggleCodeLens' as Commands
};
export type CommandContext = 'gitlens:canToggleCodeLens' | 'gitlens:enabled' | 'gitlens:isBlameable' | 'gitlens:key';
export type CommandContext = 'gitlens:canToggleCodeLens' | 'gitlens:enabled' | 'gitlens:hasRemotes' | 'gitlens:isBlameable' | 'gitlens:key';
export const CommandContext = {
CanToggleCodeLens: 'gitlens:canToggleCodeLens' as CommandContext,
Enabled: 'gitlens:enabled' as CommandContext,

Loading…
Cancel
Save