mirror of
https://github.com/junegunn/fzf.git
synced 2026-02-25 19:17:30 +08:00
13 lines
157 B
Go
13 lines
157 B
Go
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
|
|
)
|