summaryrefslogtreecommitdiffstats
path: root/src/constants.go
blob: 729bc5c4fa4b8c26bbb446f8c36e796dd0cfd41c (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.5"

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