summaryrefslogtreecommitdiffstats
path: root/src/constants.go
blob: 006a1bdcb9bb0785565c1b16f9abebfb3f73c9cc (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.6"

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