From 3b195b6be28418c8b5b6b1455eb12bc9e86edd8f Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Sat, 1 Apr 2017 02:32:39 -0400 Subject: [PATCH] Fixes missing context --- src/commands/common.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/common.ts b/src/commands/common.ts index 9b56fbb..dd60f9d 100644 --- a/src/commands/common.ts +++ b/src/commands/common.ts @@ -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,