From ab970da4d5ac223e501f55d71a5af574a1345050 Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Sat, 1 Dec 2018 17:08:19 +0100 Subject: termui: use the '↵' symbol to save screen space MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- termui/bug_table.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'termui/bug_table.go') diff --git a/termui/bug_table.go b/termui/bug_table.go index 8ad77b41..14d9aa31 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, "[q] Quit [s] Search [←↓↑→,hjkl] Navigation [enter] Open bug [n] New bug [i] Pull [o] Push") + _, _ = fmt.Fprintf(v, "[q] Quit [s] Search [←↓↑→,hjkl] Navigation [↵] Open bug [n] New bug [i] Pull [o] Push") } _, err = g.SetCurrentView(bugTableView) -- cgit