m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-16 23:33:39 -05:00
Files
fzf/src/constants.go
2015-01-18 16:59:04 +09:00

19 lines
236 B
Go

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
)