gilo/editor/keymap.go
Timothy J. Warren 1a4f6809fb
All checks were successful
timw4mail/gilo/pipeline/head This commit looks good
Fix current line display, automatic formatting fixes
2021-04-01 16:47:32 -04:00

18 lines
455 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"
)