gilo/editor/keymap.go
Timothy Warren 41d1aa6553
All checks were successful
timw4mail/gilo/pipeline/head This commit looks good
Insert a char
2021-04-01 16:17:13 -04:00

17 lines
424 B
Go

package editor
// ----------------------------------------------------------------------------
// !Constants representing input keys
// ----------------------------------------------------------------------------
const (
keyUp = "ARROW_UP"
keyDown = "ARROW_DOWN"
keyLeft = "ARROW_LEFT"
keyRight = "ARROW_RIGHT"
keyPageUp = "PAGE_UP"
keyPageDown = "PAGE_DOWN"
keyHome = "HOME"
keyEnd = "END"
keyDelete = "DELETE"
)