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 .
- Oct 31, 2020
-
-
Junegunn Choi authored
This reverts commit 7915e365 due to https://github.com/junegunn/fzf.vim/issues/1152#issuecomment-719696495.
-
Junegunn Choi authored
Fix #1766
-
- Oct 30, 2020
-
-
Junegunn Choi authored
The output may contain some unexpected warning messages from the shell if it's not properly configured. While such extra messages should be properly addressed by the user, we can ignore them by checking the last line of the output instead of the first line. Related: https://github.com/junegunn/fzf.vim/commit/bd3a021ec11617c56e6aa95578fee619445b029d
-
- Oct 29, 2020
-
-
Junegunn Choi authored
So that you can still build and use fzf even when the precise version number is not injected via -ldflags.
-
Junegunn Choi authored
-
Junegunn Choi authored
Fix #2229
- Oct 28, 2020
-
-
Junegunn Choi authored
-
Junegunn Choi authored
-
Junegunn Choi authored
So that the package maintainers would immediately know that the build is incorrect. But is there a way to make build simply fail? Related: https://github.com/junegunn/fzf.vim/issues/1150
-
- Oct 27, 2020
-
-
Junegunn Choi authored
-
Junegunn Choi authored
* Fix: barbled multibyte text(exe. Japanese). * fixup Co-authored-by:
Junegunn Choi <junegunn.c@gmail.com>
-
Junegunn Choi authored
-
Junegunn Choi authored
-
nekowasabi authored
-
Junegunn Choi authored
- Oct 26, 2020
-
-
Junegunn Choi authored
-
Junegunn Choi authored
Instead of drawing the window border in Vim using an extra window, extend the --border option so that we do can it natively. Close #2223 Fix #2184
-
- Oct 25, 2020
-
-
Junegunn Choi authored
New color name: input
-
Junegunn Choi authored
-
Junegunn Choi authored
-
Junegunn Choi authored
Close #1663
-
- Oct 24, 2020
-
-
Junegunn Choi authored
-
- Oct 23, 2020
-
-
Junegunn Choi authored
-
Junegunn Choi authored
Fixes #2163, though this is not a proper fix to the problem.
-
Junegunn Choi authored
-
Junegunn Choi authored
Close #2211
-
Junegunn Choi authored
fzf --preview 'for i in $(seq 100000); do (( i % 200 == 0 )) && printf "\033[2J" echo "$i" sleep 0.01 done'
-
Junegunn Choi authored
-
Junegunn Choi authored
We were not properly waiting for truthy-ness in until blocks. Need Minitest with https://github.com/seattlerb/minitest/commit/21d9e804b63c619f602f3f4ece6c71b48974707a
-
- Oct 20, 2020
-
-
Junegunn Choi authored
Close #2217 seq 100 | fzf # 100/100 seq 100 | fzf --multi # 100/100 (0) seq 100 | fzf --multi 5 # 100/100 (0/5)
-
- Oct 18, 2020
-
-
Junegunn Choi authored
Fix #2212 # Will start rendering after 200ms, update every 100ms fzf --preview 'for i in $(seq 100); do echo $i; sleep 0.01; done' # Should print "Loading .." message after 500ms fzf --preview 'sleep 1; for i in $(seq 100); do echo $i; sleep 0.01; done' # The first line should appear after 200ms fzf --preview 'date; sleep 2; date' # Should not render before enough lines for the scroll offset are ready rg --line-number --no-heading --color=always ^ | fzf --delimiter : --ansi --preview-window '+{2}-/2' \ --preview 'sleep 1; bat --style=numbers --color=always --pager=never --highlight-line={2} {1}'
-
- Oct 12, 2020
-
-
Andrew Zhou authored
Fixes error when option-like args are parsed (e.g. "-1").
-
- Oct 11, 2020
-
-
Junegunn Choi authored
- Oct 09, 2020
-
-
Junegunn Choi authored
# Should properly escape arguments FZF_DEFAULT_OPTS='--prompt "\$a`b\"c"' fzf-tmux --header $'$a\nb"c`d'
-