summaryrefslogtreecommitdiffstats
path: root/src/constants.go
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2015-01-02 04:49:30 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2015-01-04 00:37:29 +0900
commitf3177305d5572b26f135fc045481358b4eb1bf69 (patch)
treed59fd9587e44e998581a131875bf45e243df6c6e /src/constants.go
parent7ba93d9f8351be64b37c65ae04d594ee261d5d26 (diff)
Rewrite fzf in Go
Diffstat (limited to 'src/constants.go')
-rw-r--r--src/constants.go12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/constants.go b/src/constants.go
new file mode 100644
index 00000000..b0b64dbb
--- /dev/null
+++ b/src/constants.go
@@ -0,0 +1,12 @@
+package fzf
+
+const VERSION = "0.9.0"
+
+const (
+ EVT_READ_NEW EventType = iota
+ EVT_READ_FIN
+ EVT_SEARCH_NEW
+ EVT_SEARCH_PROGRESS
+ EVT_SEARCH_FIN
+ EVT_CLOSE
+)