mirror of https://github.com/liamg/aminal.git
14 lines
338 B
Go
14 lines
338 B
Go
package config
|
|
|
|
type UserAction string
|
|
|
|
const (
|
|
ActionCopy UserAction = "copy"
|
|
ActionPaste UserAction = "paste"
|
|
ActionSearch UserAction = "search"
|
|
ActionReportBug UserAction = "report"
|
|
ActionToggleDebug UserAction = "debug"
|
|
ActionToggleSlomo UserAction = "slomo"
|
|
ActionBufferClear UserAction = "buffer-clear"
|
|
)
|