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

import (
	"github.com/junegunn/fzf/src/util"
)

// Current version
const Version = "0.9.1-dev"

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