m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-14 06:13:47 -05:00
Files
fzf/src/constants.go
2015-03-27 12:35:06 +09:00

19 lines
235 B
Go

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