summaryrefslogtreecommitdiffstats
path: root/src/constants.go
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2015-01-12 12:56:17 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2015-01-12 12:56:17 +0900
commitcd847affb79ea6438c9721635724efc6f58e2215 (patch)
treed1e631e3dca8832ee4c495924789f6697c3629cf /src/constants.go
parent7a2bc2cada971c7a390d09b0afda34780ff56fb6 (diff)
Reorganize source code
Diffstat (limited to 'src/constants.go')
-rw-r--r--src/constants.go9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/constants.go b/src/constants.go
index 80eb6345..a8715700 100644
--- a/src/constants.go
+++ b/src/constants.go
@@ -1,14 +1,15 @@
package fzf
+import (
+ "github.com/junegunn/fzf/src/util"
+)
+
// Current version
const Version = "0.9.0"
-// EventType is the type for fzf events
-type EventType int
-
// fzf events
const (
- EvtReadNew EventType = iota
+ EvtReadNew util.EventType = iota
EvtReadFin
EvtSearchNew
EvtSearchProgress