mirror of
https://github.com/junegunn/fzf.git
synced 2025-09-02 05:13:49 -07:00
Cache the result as sorted
This commit is contained in:
6
fzf
6
fzf
@@ -642,12 +642,12 @@ class FZF
|
||||
matcher.match(list, q, q[0, cx], q[cx..-1]))
|
||||
end
|
||||
next if skip
|
||||
matches = fcache[q] = @sort ? found : found.reverse
|
||||
end
|
||||
|
||||
matches = @sort ? found : found.reverse
|
||||
if !empty && @sort && matches.length <= @sort
|
||||
matches = sort_by_rank(matches)
|
||||
end
|
||||
fcache[q] = matches
|
||||
end
|
||||
|
||||
# Atomic update
|
||||
@matches.set matches
|
||||
|
Reference in New Issue
Block a user