summaryrefslogtreecommitdiffstats
path: root/pkg/gui/context/context.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/gui/context/context.go')
-rw-r--r--pkg/gui/context/context.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/pkg/gui/context/context.go b/pkg/gui/context/context.go
index f57cb507d..add336cfd 100644
--- a/pkg/gui/context/context.go
+++ b/pkg/gui/context/context.go
@@ -24,7 +24,6 @@ const (
MAIN_PATCH_BUILDING_CONTEXT_KEY types.ContextKey = "patchBuilding"
MAIN_STAGING_CONTEXT_KEY types.ContextKey = "staging"
MENU_CONTEXT_KEY types.ContextKey = "menu"
- CREDENTIALS_CONTEXT_KEY types.ContextKey = "credentials"
CONFIRMATION_CONTEXT_KEY types.ContextKey = "confirmation"
SEARCH_CONTEXT_KEY types.ContextKey = "search"
COMMIT_MESSAGE_CONTEXT_KEY types.ContextKey = "commitMessage"
@@ -51,7 +50,6 @@ var AllContextKeys = []types.ContextKey{
MAIN_PATCH_BUILDING_CONTEXT_KEY,
MAIN_STAGING_CONTEXT_KEY, // not focusable for secondary view
MENU_CONTEXT_KEY,
- CREDENTIALS_CONTEXT_KEY,
CONFIRMATION_CONTEXT_KEY,
SEARCH_CONTEXT_KEY,
COMMIT_MESSAGE_CONTEXT_KEY,
@@ -80,7 +78,6 @@ type ContextTree struct {
Staging types.Context
PatchBuilding types.Context
Merging types.Context
- Credentials types.Context
Confirmation types.Context
CommitMessage types.Context
Search types.Context
@@ -103,7 +100,6 @@ func (self *ContextTree) Flatten() []types.Context {
self.Stash,
self.Menu,
self.Confirmation,
- self.Credentials,
self.CommitMessage,
self.Normal,
self.Staging,