m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-16 15:23:48 -05:00
This commit is contained in:
Junegunn Choi
2016-08-14 17:51:34 +09:00
parent 8df7d962e6
commit d4b6338102
4 changed files with 5 additions and 4 deletions

View File

@@ -200,7 +200,7 @@ func (m *Matcher) scan(request MatchRequest) (*Merger, bool) {
}
partialResults := make([][]*Item, numSlices)
for _, _ = range slices {
for _ = range slices {
partialResult := <-resultChan
partialResults[partialResult.index] = partialResult.matches
}