aboutsummaryrefslogtreecommitdiffstats
path: root/termui/bug_table.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2018-09-13 12:19:49 +0200
committerMichael Muré <batolettre@gmail.com>2018-09-13 12:19:49 +0200
commit8a25c63d6972d9168dcb3599066076bdb84f8790 (patch)
tree0f26a9b025656b2a9a9fc0a19e2ca6e555039842 /termui/bug_table.go
parent19f43a83c3925ed3d05a4874dcbc84cbb454ea6c (diff)
downloadgit-bug-8a25c63d6972d9168dcb3599066076bdb84f8790.tar.gz
termui: add missing query help text
Diffstat (limited to 'termui/bug_table.go')
-rw-r--r--termui/bug_table.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/termui/bug_table.go b/termui/bug_table.go
index 5bd5bf64..5b25ce11 100644
--- a/termui/bug_table.go
+++ b/termui/bug_table.go
@@ -120,7 +120,7 @@ func (bt *bugTable) layout(g *gocui.Gui) error {
v.Frame = false
v.BgColor = gocui.ColorBlue
- fmt.Fprintf(v, "[Esc] Quit [←↓↑→,hjkl] Navigation [enter] Open bug [n] New bug [i] Pull [o] Push")
+ fmt.Fprintf(v, "[Esc] Quit [q] Query [←↓↑→,hjkl] Navigation [enter] Open bug [n] New bug [i] Pull [o] Push")
}
_, err = g.SetCurrentView(bugTableView)