summaryrefslogtreecommitdiffstats
path: root/src/constants.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/constants.go')
-rw-r--r--src/constants.go19
1 files changed, 12 insertions, 7 deletions
diff --git a/src/constants.go b/src/constants.go
index b0b64dbb..80eb6345 100644
--- a/src/constants.go
+++ b/src/constants.go
@@ -1,12 +1,17 @@
package fzf
-const VERSION = "0.9.0"
+// Current version
+const Version = "0.9.0"
+// EventType is the type for fzf events
+type EventType int
+
+// fzf events
const (
- EVT_READ_NEW EventType = iota
- EVT_READ_FIN
- EVT_SEARCH_NEW
- EVT_SEARCH_PROGRESS
- EVT_SEARCH_FIN
- EVT_CLOSE
+ EvtReadNew EventType = iota
+ EvtReadFin
+ EvtSearchNew
+ EvtSearchProgress
+ EvtSearchFin
+ EvtClose
)