mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
13 lines
341 B
Go
13 lines
341 B
Go
package weather
|
|
|
|
import "github.com/gdamore/tcell"
|
|
|
|
func (widget *Widget) initializeKeyboardControls() {
|
|
widget.SetKeyboardChar("/", widget.ShowHelp)
|
|
widget.SetKeyboardChar("h", widget.Prev)
|
|
widget.SetKeyboardChar("l", widget.Next)
|
|
|
|
widget.SetKeyboardKey(tcell.KeyLeft, widget.Prev)
|
|
widget.SetKeyboardKey(tcell.KeyRight, widget.Next)
|
|
}
|