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 .
- Dec 30, 2020
-
-
Junegunn Choi authored
"alt-" with any case-sensitive character is allowed
-
Junegunn Choi authored
This is the opposite of "first" (previously known as "top").
-
- Dec 23, 2020
-
-
林千里 authored
zsh sends SIGCONT when running fzf in a pipe in certain cases, causing mouse mode to become disabled Fix #2101
-
Loic Nageleisen authored
-
Junegunn Choi authored
Fix #2293
-
- Dec 16, 2020
-
-
Junegunn Choi authored
Close #2287
-
- Dec 08, 2020
-
-
Junegunn Choi authored
This reverts commit b62a74b3. https://github.com/junegunn/fzf/pull/2251#issuecomment-740551383
-
- Dec 07, 2020
-
-
Junegunn Choi authored
-
Junegunn Choi authored
So you can override the colors and still have the text attributes # Default colors and attributes fzf export FZF_DEFAULT_OPTS='--color hl:-1:underline,hl+:-1:underline:reverse' # Default colors with underline+reverse attributes fzf # Different colors with underline+reverse attributes fzf --color hl:176,hl+:177 Related: https://github.com/junegunn/fzf.vim/issues/1197#issuecomment-739804363
-
- Dec 05, 2020
-
-
Junegunn Choi authored
-
Martin Polden authored
-
Junegunn Choi authored
- Dec 04, 2020
-
-
Junegunn Choi authored
-
Junegunn Choi authored
Close #2270
-
Junegunn Choi authored
-
- Dec 03, 2020
-
-
Junegunn Choi authored
-
Junegunn Choi authored
https://docs.travis-ci.com/user/installing-dependencies/#installing-packages-on-macos > By default, the Homebrew addon will not run brew update before > installing packages. brew update can take a long time and slow down your > builds.
-
- Nov 25, 2020
-
-
Junegunn Choi authored
-
ratijas authored
-
Junegunn Choi authored
Some programs use it to set the background color for the whole line. fzf --preview "printf 'normal \x1b[42mgreen\x1b[0K \x1b[43myellow\x1b[m\nnormal again'" fzf --preview 'delta <(echo foo) <(echo bar) < /dev/tty' Fix #2249
-
- Nov 24, 2020
-
-
Junegunn Choi authored
Fix #2254 - Properly handle extra chars in the buffer. Patch suggested by @mckelly2833. - Support alt-arrow sequences in \e[1;3A format - Support shift-alt-arrow sequences in \e[1;10A format
-
Junegunn Choi authored
Fix #2258
-
- Nov 19, 2020
-
-
Junegunn Choi authored
/cc @Caid11
-
- Nov 17, 2020
-
-
Michal Domonkos authored
The clean-up is done in s:collect(), so let's make sure it's run before we may terminate due to CTRL-C or ESC (or some other error code) in s:exit_handler().
-
- Nov 15, 2020
-
-
Junegunn Choi authored
-
- Nov 14, 2020
-
-
Tomas Janousek authored
I forgot to add the "not _fzf" check into __fzf_orig_completion, so invoking it twice would rewrite the _fzf_orig_completion_xxx variables and then cause an endless loop when completion is requested. Fixes: ef2c29d5 ("[bash-completion] Optimize __fzf_orig_completion_filter")
-
- Nov 13, 2020
-
-
Tomas Janousek authored
-
Tomas Janousek authored
Commit d4ad4a25 slowed loading of completion.bash significantly (on my laptop from 10 ms to 30 ms), then 54891d11 improved that (to 20 ms) but it still stands out as the heavy part of my .bashrc. Rewriting __fzf_orig_completion_filter to pure bash without forking to sed/awk brings this back under 10 ms. before: $ HISTFILE=/tmp/bashhist hyperfine 'bash --rcfile shell/completion.bash -i' Benchmark #1: bash --rcfile shell/completion.bash -i Time (mean ± σ): 21.2 ms ± 0.3 ms [User: 24.9 ms, System: 6.4 ms] Range (min … max): 20.7 ms … 23.3 ms 132 runs after: $ HISTFILE=/tmp/bashhist hyperfine 'bash --rcfile shell/completion.bash -i' Benchmark #1: bash --rcfile shell/completion.bash -i Time (mean ± σ): 9.6 ms ± 0.3 ms [User: 8.0 ms, System: 2.2 ms] Range (min … max): 9.3 ms … 11.4 ms 298 runs Fixes: d4ad4a25 ("[bash-completion] Fix default alias/variable completion") Fixes: 54891d11 ("[bash-completion] Minor optimization")
-
Tomas Janousek authored
This prevents mistakes like the one fixed by the previous commit, and also speeds bash startup a tiny bit: before: $ HISTFILE=/tmp/bashhist hyperfine 'bash --rcfile shell/completion.bash -i' Benchmark #1: bash --rcfile shell/completion.bash -i Time (mean ± σ): 22.4 ms ± 0.6 ms [User: 28.7 ms, System: 7.8 ms] Range (min … max): 21.7 ms … 25.2 ms 123 runs after: $ HISTFILE=/tmp/bashhist hyperfine 'bash --rcfile shell/completion.bash -i' Benchmark #1: bash --rcfile shell/completion.bash -i Time (mean ± σ): 21.2 ms ± 0.3 ms [User: 24.9 ms, System: 6.4 ms] Range (min … max): 20.7 ms … 23.3 ms 132 runs
-
Tomas Janousek authored
This doesn't look right: $ complete | grep ' _.$' complete _a complete _v The __fzf_orig_completion_filter invocation in _fzf_setup_completion needs the /-F/ filter, just like all the other invocations. Fixes: d4ad4a25 ("[bash-completion] Fix default alias/variable completion")
-
- Nov 09, 2020
-
-
Junegunn Choi authored
Close #2241
-
Junegunn Choi authored
- Nov 05, 2020
-
- Nov 03, 2020
-
-
Junegunn Choi authored
Fix #2231
-
Junegunn Choi authored
Fix #2239
-
Junegunn Choi authored