sampler-fork/console/signal.go

19 lines
275 B
Go
Raw Normal View History

package console
const (
SignalResize = "<Resize>"
2019-04-14 00:24:24 +00:00
SignalClick = "<MouseLeft>"
)
const (
KeyPause = "p"
KeyQuit = "q"
KeyExit = "<C-c>"
KeyLeft = "<Left>"
KeyRight = "<Right>"
KeyUp = "<Up>"
KeyDown = "<Down>"
KeyEnter = "<Enter>"
KeyEsc = "<Escape>"
)