summaryrefslogtreecommitdiffstats
path: root/pkg/gui/context.go
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2020-11-16 20:38:26 +1100
committerJesse Duffield <jessedduffield@gmail.com>2020-11-18 08:36:19 +1100
commit682db77401e5c44de1eeeb179afd0114bfe82f72 (patch)
tree1dbdadd56b6e893550565da86fe37cb0a40be30d /pkg/gui/context.go
parent6faed08d9de2841788b1eac4077862bc4ae682f1 (diff)
fix lint errors
Diffstat (limited to 'pkg/gui/context.go')
-rw-r--r--pkg/gui/context.go42
1 files changed, 21 insertions, 21 deletions
diff --git a/pkg/gui/context.go b/pkg/gui/context.go
index 063de50f9..3784bb1d5 100644
--- a/pkg/gui/context.go
+++ b/pkg/gui/context.go
@@ -280,9 +280,7 @@ func (gui *Gui) contextTree() ContextTree {
},
Merging: SimpleContextNode{
Context: BasicContext{
- OnFocus: func() error {
- return gui.refreshMergePanel()
- },
+ OnFocus: gui.refreshMergePanel,
Kind: MAIN_CONTEXT,
ViewName: "main",
Key: MAIN_MERGING_CONTEXT_KEY,
@@ -291,7 +289,7 @@ func (gui *Gui) contextTree() ContextTree {
},
Credentials: SimpleContextNode{
Context: BasicContext{
- OnFocus: func() error { return gui.handleCredentialsViewFocused() },
+ OnFocus: gui.handleCredentialsViewFocused,
Kind: PERSISTENT_POPUP,
ViewName: "credentials",
Key: CREDENTIALS_CONTEXT_KEY,
@@ -307,7 +305,7 @@ func (gui *Gui) contextTree() ContextTree {
},
CommitMessage: SimpleContextNode{
Context: BasicContext{
- OnFocus: func() error { return gui.handleCommitMessageFocused() },
+ OnFocus: gui.handleCommitMessageFocused,
Kind: PERSISTENT_POPUP,
ViewName: "commitMessage",
Key: COMMIT_MESSAGE_CONTEXT_KEY,
@@ -513,7 +511,7 @@ func (gui *Gui) activateContext(c Context) error {
if viewName == "main" {
gui.changeMainViewsContext(c.GetKey())
} else {
- gui.changeMainViewsContext("normal")
+ gui.changeMainViewsContext(MAIN_NORMAL_CONTEXT_KEY)
}
gui.setViewTabForContext(c)
@@ -556,13 +554,14 @@ func (gui *Gui) activateContext(c Context) error {
return nil
}
-func (gui *Gui) renderContextStack() string {
- result := ""
- for _, context := range gui.State.ContextStack {
- result += context.GetKey() + "\n"
- }
- return result
-}
+// currently unused
+// func (gui *Gui) renderContextStack() string {
+// result := ""
+// for _, context := range gui.State.ContextStack {
+// result += context.GetKey() + "\n"
+// }
+// return result
+// }
func (gui *Gui) currentContext() Context {
if len(gui.State.ContextStack) == 0 {
@@ -755,16 +754,17 @@ func (gui *Gui) rerenderView(viewName string) error {
return context.HandleRender()
}
-func (gui *Gui) getCurrentSideView() *gocui.View {
- currentSideContext := gui.currentSideContext()
- if currentSideContext == nil {
- return nil
- }
+// currently unused
+// func (gui *Gui) getCurrentSideView() *gocui.View {
+// currentSideContext := gui.currentSideContext()
+// if currentSideContext == nil {
+// return nil
+// }
- view, _ := gui.g.View(currentSideContext.GetViewName())
+// view, _ := gui.g.View(currentSideContext.GetViewName())
- return view
-}
+// return view
+// }
func (gui *Gui) getSideContextSelectedItemId() string {
currentSideContext := gui.currentSideContext()