1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00

changing keybind

This commit is contained in:
Joel Valentine 2019-08-31 15:34:35 +01:00
parent ccaca4f1c0
commit d0308142a3

View File

@ -18,5 +18,5 @@ func (widget *Widget) initializeKeyboardControls() {
widget.SetKeyboardKey(tcell.KeyRight, widget.NextSource, "Select next source")
widget.SetKeyboardKey(tcell.KeyLeft, widget.PrevSource, "Select previous source")
widget.SetKeyboardKey(tcell.KeyEnter, widget.openPr, "Open item in browser")
widget.SetKeyboardKey(tcell.KeyBackspace, widget.openRepo, "Open item in browser")
widget.SetKeyboardKey(tcell.KeyInsert, widget.openRepo, "Open item in browser")
}