Timothy J. Warren
1cc35c95a7
All checks were successful
timw4mail/gilo/pipeline/head This commit looks good
28 lines
712 B
Go
28 lines
712 B
Go
package editor
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// !General Constants
|
|
// ----------------------------------------------------------------------------
|
|
|
|
const (
|
|
KiloVersion = "0.0.1"
|
|
KiloTabStop = 4
|
|
KiloQuitTimes = 3
|
|
)
|
|
|
|
// ----------------------------------------------------------------------------
|
|
// !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"
|
|
)
|