16 lines
321 B
Go
16 lines
321 B
Go
|
package settings
|
||
|
|
||
|
type Event string
|
||
|
|
||
|
const (
|
||
|
EventPause = "p"
|
||
|
EventQuit = "q"
|
||
|
EventResize = "<Resize>"
|
||
|
EventExit = "<C-c>"
|
||
|
EventMouseClick = "<MouseLeft>"
|
||
|
EventKeyboardLeft = "<Left>"
|
||
|
EventKeyboardRight = "<Right>"
|
||
|
EventKeyboardUp = "<Up>"
|
||
|
EventKeyboardDown = "<Down>"
|
||
|
)
|