sampler-fork/console/signal.go

19 lines
275 B
Go

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