Files
junegunn--fzf/src/constants.go
T
2015-01-15 06:06:22 +09:00

19 lines
236 B
Go

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
)