Remove duplicate code

This commit is contained in:
onee-only
2024-03-04 12:55:59 +09:00
committed by Junegunn Choi
parent 7444eff6d4
commit 8061a2f108
2 changed files with 7 additions and 10 deletions

View File

@@ -209,11 +209,10 @@ func parseTerms(fuzzy bool, caseMode Case, normalize bool, str string) []termSet
// Flip exactness
if fuzzy && !inv {
typ = termExact
text = text[1:]
} else {
typ = termFuzzy
text = text[1:]
}
text = text[1:]
} else if strings.HasPrefix(text, "^") {
if typ == termSuffix {
typ = termEqual