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 .
- Apr 28, 2015
-
-
Junegunn Choi authored
-
- Apr 26, 2015
-
-
Junegunn Choi authored
Support for vi insert mode in upcoming fish 2.2.0
-
Oliver Schrenk authored
-
- Apr 25, 2015
-
-
Junegunn Choi authored
This fixes the issue where "inline-info" is not immediately rendered when the terminal is resized.
-
Junegunn Choi authored
-
Junegunn Choi authored
-
Junegunn Choi authored
-
- Apr 24, 2015
-
-
Junegunn Choi authored
-
Junegunn Choi authored
Code submitted by @lydell
-
- Apr 23, 2015
-
-
Junegunn Choi authored
-
Junegunn Choi authored
-
Junegunn Choi authored
Close #214
-
Junegunn Choi authored
-
Junegunn Choi authored
-
Junegunn Choi authored
-
- Apr 22, 2015
-
-
Junegunn Choi authored
Close #169
-
Junegunn Choi authored
-
Junegunn Choi authored
-
Junegunn Choi authored
-
Junegunn Choi authored
-
- Apr 21, 2015
-
-
Junegunn Choi authored
-
Junegunn Choi authored
-
Junegunn Choi authored
Note that CTRL-T on bash is still using the old trick of send-keys.
-
Junegunn Choi authored
Close #202
-
Junegunn Choi authored
-
Junegunn Choi authored
-
Junegunn Choi authored
Close #208
-
Junegunn Choi authored
-
- Apr 20, 2015
-
-
Junegunn Choi authored
-
Junegunn Choi authored
This reverts commit 7b6a27cb.
-
Junegunn Choi authored
-
Junegunn Choi authored
The default shell can be a non-standard shell (e.g. fish)
-
- Apr 19, 2015
-
-
Junegunn Choi authored
1. Go binary: ../bin/fzf 2. System fzf: $(which fzf) 3. Download fzf from GitHub or create wrapper script to Ruby version (../fzf) when the binary for the platform is not available 4. If install script is not found or for some reason failed, try to use Ruby version in its expected location (../fzf) 5. If fzf is found to be a shell function, use it (type fzf)
-
- Apr 18, 2015
-
-
Junegunn Choi authored
-
Junegunn Choi authored
Related #199
-
Junegunn Choi authored
- dark: the current default for 256-color terminal - light: color scheme for 256-color terminal with light background - 16: the default color scheme for 16-color terminal (`+2`) - bw: no colors (`+c`)
-
- 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
-
Junegunn Choi authored
-