fzf/src/constants.go

18 lines
239 B
Go
Raw Normal View History

2015-01-01 19:49:30 +00:00
package fzf
2015-01-11 18:01:24 +00:00
// Current version
const Version = "0.9.0"
2015-01-01 19:49:30 +00:00
2015-01-11 18:01:24 +00:00
// EventType is the type for fzf events
type EventType int
// fzf events
2015-01-01 19:49:30 +00:00
const (
2015-01-11 18:01:24 +00:00
EvtReadNew EventType = iota
EvtReadFin
EvtSearchNew
EvtSearchProgress
EvtSearchFin
EvtClose
2015-01-01 19:49:30 +00:00
)