aminal/config/actions.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"
)