fzf/src/constants.go
Junegunn Choi c1aa5c5f33 Add --tac option and reverse display order of --no-sort
DISCLAIMER: This is a backward incompatible change
2015-02-26 01:42:15 +09:00

19 lines
232 B
Go

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