sampler-fork/console/signal.go

18 lines
245 B
Go

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