termui: use the '↵' symbol to save screen space

Michael Muré created

Change summary

termui/bug_table.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

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)