summaryrefslogtreecommitdiffstats
path: root/CHANGELOG.md
AgeCommit message (Collapse)Author
2021-06-01Fix bug where `--read0` not properly displaying long linesJunegunn Choi
Fix #2508
2021-05-26Allow specifying 16 base ANSI colors by their namesJunegunn Choi
Close #2502
2021-05-22Add 'unbind' actionJunegunn Choi
Fix #2486
2021-04-060.27.00.27.0Junegunn Choi
2021-04-06Sign and notarize macOS binariesJunegunn Choi
Close #2408
2021-04-06More border optins for preview windowJunegunn Choi
Close #2431
2021-03-13Advanced preview scroll offset expression to better support fixed headerJunegunn Choi
2021-03-12Add support for preview window headerJunegunn Choi
Fix #2373 # Display top 3 lines as the fixed header fzf --preview 'bat --style=header,grid --color=always {}' --preview-window '~3'
2021-02-28Fix typoJunegunn Choi
2021-02-25Add select and deselect actionsJunegunn Choi
Close #2358
2021-02-030.25.10.25.1Junegunn Choi
2021-02-02Add `close` actionJunegunn Choi
Close #2331
2021-01-03Make search toggleableJunegunn Choi
- `--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
2020-12-31Add preview-top and preview-bottom actionsJunegunn Choi
2020-12-30Extend support for alt key chordsJunegunn Choi
"alt-" with any case-sensitive character is allowed
2020-12-30Add "last" action to move the cursor to the last matchJunegunn Choi
This is the opposite of "first" (previously known as "top").
2020-12-07Update CHANGELOGJunegunn Choi
2020-12-05Add --preview-window follow optionJunegunn Choi
2020-12-04Add change-prompt actionJunegunn Choi
Close #2270
2020-11-09Add --padding optionJunegunn Choi
Close #2241
2020-11-03Fix regression where lines are skipped in the preview windowJunegunn Choi
Fix #2239
2020-10-290.24.10.24.1Junegunn Choi
2020-10-270.24.00.24.0Junegunn Choi
2020-10-270.24.0-rc10.24.0-rc1Junegunn Choi
2020-10-26Add more --border optionsJunegunn Choi
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
2020-10-26Update --color example in CHANGELOGJunegunn Choi
New color name: input
2020-10-26Update --color docsJunegunn Choi
2020-10-25Add support for text styling using --colorJunegunn Choi
Close #1663
2020-10-23Support ANSI escape sequence for clearing display in preview windowJunegunn Choi
fzf --preview 'for i in $(seq 100000); do (( i % 200 == 0 )) && printf "\033[2J" echo "$i" sleep 0.01 done'
2020-10-18Implement streaming preview window (#2215)Junegunn Choi
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}'
2020-10-110.23.10.23.1Junegunn Choi
2020-10-11Add --preview-window=default for resetting the optionsJunegunn Choi
2020-10-09Add nowrap, nocycle, nohidden for --preview-windowJunegunn Choi
Close #2203
2020-10-09Reset preview window flags that are not style-relatedJunegunn Choi
Fix #2203
2020-10-070.23.00.23.0Junegunn Choi
2020-10-06Add --preview-window option for cyclic scrollingJunegunn Choi
Close #2182
2020-10-05Add preview-half-page-down and preview-half-page-up (#2145)Tinmarino
2020-09-09Update CHANGELOGJunegunn Choi
2020-08-23Add more preview window options and reduce vertical padding on noborderJunegunn Choi
Fix #2138 Fix #2029
2020-08-23Support preview scroll offset relative to window heightJunegunn Choi
Related: https://github.com/junegunn/fzf.vim/issues/1092
2020-08-020.22.00.22.0Junegunn Choi
2020-07-28Smart match of accented charactersJunegunn Choi
Fix #1618
2020-07-27Add preview window option for setting the initial scroll offsetJunegunn Choi
Close #1057 Close #2120 # Initial scroll offset is set to the line number of each line of # git grep output *minus* 5 lines git grep --line-number '' | fzf --delimiter : --preview 'nl {1}' --preview-window +{2}-5
2020-07-05Support ANSI colors in --prompt stringJunegunn Choi
Close #2086
2020-06-30Update CHANGELOGJunegunn Choi
2020-04-030.21.10.21.1Junegunn Choi
2020-03-120.21.00.21.0Junegunn Choi
2020-03-11Add --keep-right option to keep the right end of the line visibleJunegunn Choi
Close #1652
2020-03-11Change custom fuzzy completion APIJunegunn Choi
To make it easier to write more complex fzf options. Although this does not break backward compatibility, users are encouraged to update their code accordingly. # Before _fzf_complete "FZF_ARG1 FZF_ARG2..." "$@" < <( # Print candidates ) # After _fzf_complete FZF_ARG1 FZF_ARG2... -- "$@" < <( # Print candidates )
2020-03-10Make height option work under Windows (#1341)Michael Kelley
Separate Unix & Windows code into platform specific files for light renderer