2015-01-01 19:49:30 +00:00
|
|
|
package fzf
|
|
|
|
|
2015-01-12 03:56:17 +00:00
|
|
|
import (
|
2015-04-17 13:23:52 +00:00
|
|
|
"time"
|
|
|
|
|
2015-01-12 03:56:17 +00:00
|
|
|
"github.com/junegunn/fzf/src/util"
|
|
|
|
)
|
|
|
|
|
2015-04-17 13:23:52 +00:00
|
|
|
const (
|
|
|
|
// Current version
|
2016-11-09 03:41:46 +00:00
|
|
|
version = "0.15.7"
|
2015-04-17 13:23:52 +00:00
|
|
|
|
|
|
|
// Core
|
|
|
|
coordinatorDelayMax time.Duration = 100 * time.Millisecond
|
|
|
|
coordinatorDelayStep time.Duration = 10 * time.Millisecond
|
|
|
|
|
|
|
|
// Reader
|
2016-08-15 16:52:24 +00:00
|
|
|
readerBufferSize = 64 * 1024
|
2015-04-17 13:23:52 +00:00
|
|
|
|
|
|
|
// Terminal
|
2016-09-17 19:20:29 +00:00
|
|
|
initialDelay = 20 * time.Millisecond
|
|
|
|
initialDelayTac = 100 * time.Millisecond
|
|
|
|
spinnerDuration = 200 * time.Millisecond
|
|
|
|
maxPatternLength = 100
|
2015-04-17 13:23:52 +00:00
|
|
|
|
|
|
|
// Matcher
|
2016-09-07 00:58:18 +00:00
|
|
|
numPartitionsMultiplier = 8
|
|
|
|
maxPartitions = 32
|
|
|
|
progressMinDuration = 200 * time.Millisecond
|
2015-04-17 13:23:52 +00:00
|
|
|
|
|
|
|
// Capacity of each chunk
|
|
|
|
chunkSize int = 100
|
|
|
|
|
2016-09-07 00:58:18 +00:00
|
|
|
// Pre-allocated memory slices to minimize GC
|
|
|
|
slab16Size int = 100 * 1024 // 200KB * 32 = 12.8MB
|
|
|
|
slab32Size int = 2048 // 8KB * 32 = 256KB
|
|
|
|
|
2015-04-17 13:23:52 +00:00
|
|
|
// Do not cache results of low selectivity queries
|
|
|
|
queryCacheMax int = chunkSize / 5
|
|
|
|
|
|
|
|
// Not to cache mergers with large lists
|
|
|
|
mergerCacheMax int = 100000
|
2015-06-13 15:43:44 +00:00
|
|
|
|
|
|
|
// History
|
|
|
|
defaultHistoryMax int = 1000
|
2016-05-17 17:06:52 +00:00
|
|
|
|
|
|
|
// Jump labels
|
2016-05-18 16:46:22 +00:00
|
|
|
defaultJumpLabels string = "asdfghjklqwertyuiopzxcvbnm1234567890ASDFGHJKLQWERTYUIOPZXCVBNM`~;:,<.>/?'\"!@#$%^&*()[{]}-_=+"
|
2015-04-17 13:23:52 +00:00
|
|
|
)
|
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
|
2015-07-21 18:21:20 +00:00
|
|
|
EvtHeader
|
2015-01-11 18:01:24 +00:00
|
|
|
EvtClose
|
2015-01-01 19:49:30 +00:00
|
|
|
)
|
2015-09-15 04:21:51 +00:00
|
|
|
|
|
|
|
const (
|
2015-09-18 01:25:07 +00:00
|
|
|
exitOk = 0
|
|
|
|
exitNoMatch = 1
|
|
|
|
exitError = 2
|
|
|
|
exitInterrupt = 130
|
2015-09-15 04:21:51 +00:00
|
|
|
)
|