summaryrefslogtreecommitdiffstats
path: root/src/constants.go
blob: 80eb6345e66923d26c26d29409c026ba0ae10e22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package fzf

// Current version
const Version = "0.9.0"

// EventType is the type for fzf events
type EventType int

// fzf events
const (
	EvtReadNew EventType = iota
	EvtReadFin
	EvtSearchNew
	EvtSearchProgress
	EvtSearchFin
	EvtClose
)