summaryrefslogtreecommitdiff
path: root/src/options.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/options.go')
-rw-r--r--src/options.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/options.go b/src/options.go
index 31ad4971..a19ff6f3 100644
--- a/src/options.go
+++ b/src/options.go
@@ -95,6 +95,7 @@ type criterion int
const (
byMatchLen criterion = iota
+ byBonus
byLength
byBegin
byEnd
@@ -178,7 +179,7 @@ func defaultOptions() *Options {
Delimiter: Delimiter{},
Sort: 1000,
Tac: false,
- Criteria: []criterion{byMatchLen, byLength},
+ Criteria: []criterion{byMatchLen, byBonus, byLength},
Multi: false,
Ansi: false,
Mouse: true,
@@ -406,7 +407,7 @@ func parseKeyChords(str string, message string) map[int]string {
}
func parseTiebreak(str string) []criterion {
- criteria := []criterion{byMatchLen}
+ criteria := []criterion{byMatchLen, byBonus}
hasIndex := false
hasLength := false
hasBegin := false