mirror of
https://github.com/junegunn/fzf.git
synced 2025-08-15 20:23:50 -07:00
Fix --with-nth option when query is non-empty
This commit is contained in:
@@ -235,9 +235,10 @@ func (p *Pattern) fuzzyMatch(chunk *Chunk) []*Item {
|
||||
input := p.prepareInput(item)
|
||||
if sidx, eidx := p.iter(FuzzyMatch, input, p.text); sidx >= 0 {
|
||||
matches = append(matches, &Item{
|
||||
text: item.text,
|
||||
offsets: []Offset{Offset{int32(sidx), int32(eidx)}},
|
||||
rank: Rank{0, 0, item.rank.index}})
|
||||
text: item.text,
|
||||
origText: item.origText,
|
||||
offsets: []Offset{Offset{int32(sidx), int32(eidx)}},
|
||||
rank: Rank{0, 0, item.rank.index}})
|
||||
}
|
||||
}
|
||||
return matches
|
||||
@@ -262,9 +263,10 @@ func (p *Pattern) extendedMatch(chunk *Chunk) []*Item {
|
||||
}
|
||||
if len(offsets) == len(p.terms) {
|
||||
matches = append(matches, &Item{
|
||||
text: item.text,
|
||||
offsets: offsets,
|
||||
rank: Rank{0, 0, item.rank.index}})
|
||||
text: item.text,
|
||||
origText: item.origText,
|
||||
offsets: offsets,
|
||||
rank: Rank{0, 0, item.rank.index}})
|
||||
}
|
||||
}
|
||||
return matches
|
||||
|
Reference in New Issue
Block a user