summaryrefslogtreecommitdiffstats
path: root/man/man1/fzf.1
AgeCommit message (Collapse)Author
2020-11-030.24.20.24.2Junegunn Choi
2020-10-290.24.10.24.1Junegunn 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 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-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-05Add preview-half-page-down and preview-half-page-up (#2145)Tinmarino
2020-09-29Remove deprecated item from man pageJunegunn 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-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-06-29Update version numbers in man pagesJunegunn Choi
2020-06-21Add preview action for --bindJunegunn Choi
Fix #2010 Fix #1638
2020-06-20Add refresh-preview actionJunegunn Choi
2020-06-07Add backward-eof event for --bindJunegunn Choi
2020-04-030.21.10.21.1Junegunn Choi
2020-03-11Add --keep-right option to keep the right end of the line visibleJunegunn Choi
Close #1652
2020-03-11Add explanation for the `g:fzf_colors` setting (#1878)Kahlil (Kal) Hodgson
Co-authored-by: Junegunn Choi <junegunn.c@gmail.com>
2020-03-05Add more --border options; default changed to "rounded"Junegunn Choi
--border option now takes an optional argument that defines the style - rounded (new default) - sharp - horizontal (previous default)
2020-02-28Add backward-delete-char/eof action (#1891)James Wright
'backward-delete-char/eof' will either abort if query is empty or delete one character backwards.
2020-02-24Add 'insert' key for --bindJunegunn Choi
Close #1744
2020-02-17Make pointer and multi-select marker customizable (#1844)Hiroki Konishi
Add --pointer and --marker option which can provide additional context to the user
2020-01-25Update copyright year (#1832)Shun Sakai
Update copyright year to 2020 and change to multi-year format.
2019-12-12Add preview-fg and preview-bg for --colorJunegunn Choi
Close #1776
2019-12-07Add clear-query and clear-selectionJunegunn Choi
Close #1787 Related #1364
2019-11-15Add `--preview-window noborder` option to disable preview borderJunegunn Choi
Close #1699
2019-11-15Add --info=STYLE [default|inline|hidden]Junegunn Choi
Close #1738
2019-11-14More key chords for --bindJunegunn Choi
Close #1752
2019-11-13Update CHANGELOG and man pagesJunegunn Choi
2019-03-310.18.00.18.0Junegunn Choi
2019-03-29Add --no-unicode option to draw borders in ASCII charactersJunegunn Choi
Close ##1533
2019-03-17Add color option for gutterJunegunn Choi
fzf --color gutter:-1 Close #1529 Close #1468
2019-02-22Export FZF_PREVIEW_LINES and FZF_PREVIEW_COLUMNS to preview processJunegunn Choi
fzf will still override LINES and COLUMNS as before but they may not hold the correct values depending on the default shell. Close #1314
2019-02-19Add placeholder expression for zero-based item index: {n} and {+n}Junegunn Choi
Close #1482
2018-10-070.17.50.17.5Junegunn Choi
2018-09-30[man] Document that FZF_DEFAULT_COMMAND should be POSIX-compliantJunegunn Choi
Close #1379
2018-06-100.17.40.17.4Junegunn Choi
2018-06-10Provide an option to reverse items only (#1267)Akinori MUSHA
2018-06-10Improve preview window update eventsJunegunn Choi
- Update preview window even if there is no match for the query string if any of the placeholder expressions evaluates to a non-empty string. - Also, if the command template contains {q}, preview window will be updated if the query string changes even though the focus remains on the same item. An example: git log --oneline --color=always | fzf --reverse --ansi --preview \ '[ -n {1} ] && git show --color=always {1} || git show --color=always {q}' Close #1307
2018-04-12Add support for alt-{up,down,left,right} keysJunegunn Choi
Close #1234
2018-03-30Implement flag for preserving whitespace around field (#1242)ZDNoFYVe
2018-03-27Fix typo in README (#1243)xalexalex
2018-02-15Add shift-up and shift-downJunegunn Choi
For now, they are respectively bound to preview-up and preview-down by default (TBD). Not available on tcell build. Close #1201