1package github 2 3import ( 4 "github.com/gdamore/tcell" 5) 6 7func (widget *Widget) initializeKeyboardControls() { 8 widget.InitializeCommonControls(widget.Refresh) 9 10 widget.SetKeyboardChar("l", widget.NextSource, "Select next source") 11 widget.SetKeyboardChar("h", widget.PrevSource, "Select previous source") 12 widget.SetKeyboardChar("o", widget.openRepo, "Open item in browser") 13 14 widget.SetKeyboardKey(tcell.KeyRight, widget.NextSource, "Select next source") 15 widget.SetKeyboardKey(tcell.KeyLeft, widget.PrevSource, "Select previous source") 16 widget.SetKeyboardKey(tcell.KeyEnter, widget.openRepo, "Open item in browser") 17} 18