This project is mirrored from https://github.com/junegunn/fzf.
Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer or owner.
Last successful update .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer or owner.
Last successful update .
- Aug 14, 2016
-
-
Junegunn Choi authored
-
Junegunn Choi authored
Approx. 50% less memory footprint and 40% improvement in query time
-
- Aug 13, 2016
-
-
Junegunn Choi authored
In the best case (all ascii), this reduces the memory footprint by 60% and the response time by 15% to 20%. In the worst case (every line has non-ascii characters), 3 to 4% overhead is observed.
-
- Mar 02, 2016
-
-
Junegunn Choi authored
Close #513
-
- Feb 07, 2016
-
-
Junegunn Choi authored
-
- Oct 02, 2015
-
-
Junegunn Choi authored
This change improves sort ordering for aligned tabular input. Given the following input: apple juice 100 apple pie 200 fzf --nth=2 will now prefer the one with pie. Before this change fzf compared "juice " and "pie ", both of which have the same length.
-
- Aug 02, 2015
-
-
Junegunn Choi authored
-
Junegunn Choi authored
> time cat /tmp/list | fzf-0.10.1-darwin_amd64 --ansi -fqwerty > /dev/null real 0m4.364s user 0m8.231s sys 0m0.820s > time cat /tmp/list | fzf --ansi -fqwerty > /dev/null real 0m4.624s user 0m5.755s sys 0m0.732s
-
Junegunn Choi authored
> wc -l /tmp/list2 2594098 /tmp/list2 > time cat /tmp/list2 | fzf-0.10.1-darwin_amd64 -fqwerty > /dev/null real 0m5.418s user 0m10.990s sys 0m1.302s > time cat /tmp/list2 | fzf-head -fqwerty > /dev/null real 0m4.862s user 0m6.619s sys 0m0.982s
-
- Apr 17, 2015
-
-
Junegunn Choi authored
I profiled fzf and it turned out that it was spending significant amount of time repeatedly converting character arrays into Unicode codepoints. This commit greatly improves search performance after the initial scan by memoizing the converted results. This commit also addresses the problem of unbounded memory usage of fzf. fzf is a short-lived process that usually processes small input, so it was implemented to cache the intermediate results very aggressively with no notion of cache expiration/eviction. I still think a proper implementation of caching scheme is definitely an overkill. Instead this commit introduces limits to the maximum size (or minimum selectivity) of the intermediate results that can be cached.
-
- Apr 16, 2015
-
-
Junegunn Choi authored
Close #193
-
- Mar 29, 2015
-
-
Junegunn Choi authored
-
- Mar 22, 2015
-
-
Junegunn Choi authored
-
- Mar 19, 2015
-
-
Junegunn Choi authored
-
- Feb 17, 2015
-
-
Junegunn Choi authored
-
- Feb 13, 2015
-
-
Junegunn Choi authored
-
- Jan 12, 2015
-
-
Junegunn Choi authored
-