sampler-fork/console/signal.go

21 lines
318 B
Go
Raw Permalink Normal View History

package console
const (
SignalResize = "<Resize>"
2019-04-14 00:24:24 +00:00
SignalClick = "<MouseLeft>"
)
const (
KeyPause1 = "p"
KeyPause2 = "P"
KeyQuit1 = "q"
KeyQuit2 = "Q"
KeyQuit3 = "<C-c>"
KeyLeft = "<Left>"
KeyRight = "<Right>"
KeyUp = "<Up>"
KeyDown = "<Down>"
KeyEnter = "<Enter>"
KeyEsc = "<Escape>"
)