mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
11 lines
364 B
Go
11 lines
364 B
Go
package transmission
|
|
|
|
// import "github.com/gdamore/tcell"
|
|
|
|
func (widget *Widget) initializeKeyboardControls() {
|
|
widget.SetKeyboardChar("/", widget.ShowHelp, "Show/hide this help prompt")
|
|
widget.SetKeyboardChar("m", nil, "Add new magnet torrent")
|
|
widget.SetKeyboardChar("p", nil, "Pause torrent")
|
|
widget.SetKeyboardChar("r", nil, "Remove torrent from list")
|
|
}
|