Files
fzf/src/constants.go
Junegunn Choi 9cb0cdb4ac 0.9.2
2015-01-24 14:49:21 +09:00

19 lines
232 B
Go

package fzf
import (
"github.com/junegunn/fzf/src/util"
)
// Current version
const Version = "0.9.2"
// fzf events
const (
EvtReadNew util.EventType = iota
EvtReadFin
EvtSearchNew
EvtSearchProgress
EvtSearchFin
EvtClose
)