summaryrefslogtreecommitdiffstats
path: root/src/options.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/options.go')
-rw-r--r--src/options.go7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/options.go b/src/options.go
index 30e00160..6399343c 100644
--- a/src/options.go
+++ b/src/options.go
@@ -83,7 +83,6 @@ const (
byLength
byBegin
byEnd
- byIndex
)
func defaultMargin() [4]string {
@@ -147,7 +146,7 @@ func defaultOptions() *Options {
Delimiter: Delimiter{},
Sort: 1000,
Tac: false,
- Criteria: []criterion{byMatchLen, byLength, byIndex},
+ Criteria: []criterion{byMatchLen, byLength},
Multi: false,
Ansi: false,
Mouse: true,
@@ -382,7 +381,6 @@ func parseTiebreak(str string) []criterion {
switch str {
case "index":
check(&hasIndex, "index")
- criteria = append(criteria, byIndex)
case "length":
check(&hasLength, "length")
criteria = append(criteria, byLength)
@@ -396,9 +394,6 @@ func parseTiebreak(str string) []criterion {
errorExit("invalid sort criterion: " + str)
}
}
- if !hasIndex {
- criteria = append(criteria, byIndex)
- }
return criteria
}