mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
* WTF-484 DigitalOcean module stubbed out * WTF-484 Delete droplets via Ctrl-d * WTF-484 Rebasing off master after a long time away * WTF-484 Improve DigitalOcean display * WTF-484 Can shutdown and restart the selected droplet * WTF-484 Display info about the selected droplet using the ? key * WTF-484 Display info about the selected droplet using the Return key * WTF-484 Greatly improve the utils.Truncate function * WTF-484 Display a droplet's features in the info modal * WTF-484 Change reboot key from r to b to not conflict with refresh * WTF-484 Panic if a keyboard control is mapped to the same character more than once * WTF-484 Colorize droplet status indicator * WTF-484 Extract view.InfoTable out into a reusable component
18 lines
754 B
Go
18 lines
754 B
Go
package transmission
|
|
|
|
import "github.com/gdamore/tcell"
|
|
|
|
func (widget *Widget) initializeKeyboardControls() {
|
|
widget.InitializeCommonControls(nil)
|
|
|
|
widget.SetKeyboardChar("j", widget.Prev, "Select previous item")
|
|
widget.SetKeyboardChar("k", widget.Next, "Select next item")
|
|
widget.SetKeyboardChar("u", widget.Unselect, "Clear selection")
|
|
|
|
widget.SetKeyboardKey(tcell.KeyCtrlD, widget.deleteSelectedTorrent, "Delete the selected torrent")
|
|
widget.SetKeyboardKey(tcell.KeyDown, widget.Next, "Select next item")
|
|
widget.SetKeyboardKey(tcell.KeyEnter, widget.pauseUnpauseTorrent, "Pause/unpause torrent")
|
|
widget.SetKeyboardKey(tcell.KeyEsc, widget.Unselect, "Clear selection")
|
|
widget.SetKeyboardKey(tcell.KeyUp, widget.Prev, "Select previous item")
|
|
}
|