summaryrefslogtreecommitdiffstats
path: root/src/constants.go
diff options
context:
space:
mode:
authorJunegunn Choi <junegunn.c@gmail.com>2017-02-18 23:17:29 +0900
committerJunegunn Choi <junegunn.c@gmail.com>2017-02-18 23:17:29 +0900
commit309e1d8619f5a31eec797ab93c89702bb2c71f78 (patch)
tree85e58a79128983ef054339c5a0cba50fcdaddd02 /src/constants.go
parentc2db67c1c086f0bbebf4802abb3fb9335ee46662 (diff)
Properly truncate long query string
Diffstat (limited to 'src/constants.go')
-rw-r--r--src/constants.go7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/constants.go b/src/constants.go
index d5246db6..cf91ce51 100644
--- a/src/constants.go
+++ b/src/constants.go
@@ -18,10 +18,9 @@ const (
readerBufferSize = 64 * 1024
// Terminal
- initialDelay = 20 * time.Millisecond
- initialDelayTac = 100 * time.Millisecond
- spinnerDuration = 200 * time.Millisecond
- maxPatternLength = 100
+ initialDelay = 20 * time.Millisecond
+ initialDelayTac = 100 * time.Millisecond
+ spinnerDuration = 200 * time.Millisecond
// Matcher
numPartitionsMultiplier = 8