summaryrefslogtreecommitdiffstats
path: root/src/constants.go
blob: c588f9f8487bd03e0d5c713d2f2d9993eb6c7d53 (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.2-dev"

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