fzf/src/constants.go

19 lines
232 B
Go
Raw Normal View History

2015-01-01 19:49:30 +00:00
package fzf
2015-01-12 03:56:17 +00:00
import (
"github.com/junegunn/fzf/src/util"
)
2015-01-11 18:01:24 +00:00
// Current version
2015-04-16 05:20:29 +00:00
const Version = "0.9.9"
2015-01-01 19:49:30 +00:00
2015-01-11 18:01:24 +00:00
// fzf events
2015-01-01 19:49:30 +00:00
const (
2015-01-12 03:56:17 +00:00
EvtReadNew util.EventType = iota
2015-01-11 18:01:24 +00:00
EvtReadFin
EvtSearchNew
EvtSearchProgress
EvtSearchFin
EvtClose
2015-01-01 19:49:30 +00:00
)