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 25, 2021
-
- Dec 22, 2021
-
-
Junegunn Choi authored
Fix #2692
-
- Dec 05, 2021
-
-
Junegunn Choi authored
So you can "rotate" through the different options with a single binding. fzf --preview 'cat {}' \ --bind 'ctrl-/:change-preview-window(70%|down,40%,border-horizontal|hidden|)' Close #2376
-
- Nov 30, 2021
-
-
Junegunn Choi authored
The new actions are named with 'change-' prefix to differentiate from the pre-existing, one-off 'preview(...)' action. Fix #2360 Fix #2505 Fix #2666 Related #2435 Related #2376 - Can set up multiple bindings with different change-preview-window actions - Not possible to "rotate" through the options with a single binding - Enlarge or shrink not possible
-
- Nov 03, 2021
-
-
Junegunn Choi authored
Close #2422
-
- Nov 02, 2021
-
-
Junegunn Choi authored
-
- Oct 15, 2021
-
- Sep 14, 2021
-
-
Junegunn Choi authored
Fix #2611
-
- Aug 15, 2021
-
-
a1346054 authored
-
- Jun 08, 2021
-
-
Junegunn Choi authored
Close #2516
-
- Jun 01, 2021
-
-
Junegunn Choi authored
Fix #2508
-
- May 26, 2021
-
-
Junegunn Choi authored
Close #2502
-
- May 22, 2021
-
-
Junegunn Choi authored
Fix #2486
-
- Apr 06, 2021
-
-
Junegunn Choi authored
Close #2408
-
Junegunn Choi authored
Close #2431
- Mar 13, 2021
-
-
Junegunn Choi authored
-
- Mar 12, 2021
-
-
Junegunn Choi authored
Fix #2373 # Display top 3 lines as the fixed header fzf --preview 'bat --style=header,grid --color=always {}' --preview-window '~3'
-
- Feb 28, 2021
-
-
Junegunn Choi authored
-
- Feb 25, 2021
-
-
Junegunn Choi authored
Close #2358
-
- Feb 03, 2021
-
- Feb 01, 2021
-
-
Junegunn Choi authored
Close #2331
-
- Jan 02, 2021
-
-
Junegunn Choi authored
- `--phony` renamed to `--disabled` for consistency - `--no-phony` is now `--enabled` - Added `enable-search`, `disable-search`, and `toggle-search` actions for `--bind` - Added `--color` options: `query` and `disabled` Close #2303
-
- Dec 31, 2020
-
-
Junegunn Choi authored
-
- 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 07, 2020
-
-
Junegunn Choi authored
-
- Dec 05, 2020
-
-
Junegunn Choi authored
-
- Dec 04, 2020
-
-
Junegunn Choi authored
Close #2270
-
- Nov 09, 2020
-
-
Junegunn Choi authored
Close #2241
-
- Nov 03, 2020
-
-
Junegunn Choi authored
Fix #2239
-
- Oct 29, 2020
-
- Oct 27, 2020
-
- Oct 26, 2020
-
-
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
Close #1663
-
- Oct 23, 2020
-
-
Junegunn Choi authored
fzf --preview 'for i in $(seq 100000); do (( i % 200 == 0 )) && printf "\033[2J" echo "$i" sleep 0.01 done'
-
- 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}'
-