summaryrefslogtreecommitdiffstats
path: root/man
AgeCommit message (Collapse)Author
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-04-03[fzf-tmux] Add option to start fzf in tmux popup windowJunegunn Choi
Requires latest tmux built from source (e.g. brew install tmux --HEAD) Examples: # 50%/50% width and height on the center of the screen fzf-tmux -p # 80%/80% fzf-tmux -p80% # 80%/40% fzf-tmux -p80%,40% # Separate -w and -h fzf-tmux -w80% -h40% # 80%/40% at position (0, 0) fzf-tmux -w80% -h40% -x0 -y0 You can configure key bindings and fuzzy completion to open in tmux popup window like so: FZF_TMUX_OPTS='-p 80%'
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-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
2017-12-030.17.30.17.3Junegunn Choi
2017-12-03Revert "0.17.2"Junegunn Choi
This reverts commit 2f1edeff78e275662667abc616287e7b9909c1c0.
2017-12-030.17.2Junegunn Choi
2017-12-02Add accept-non-empty actionJunegunn Choi
'accept-non-empty' is similar to 'accept' (which is bound to 'enter' and 'double-click' by default) but it prevents fzf from exiting without any selection. Close #1162
2017-12-01[man] Describe 'cancel' actionJunegunn Choi
2017-12-01Add replace-query actionJunegunn Choi
replace-query action replaces the query string with the current selection. If the selection is too long, it will be truncated. If the line contains meta-characters of fzf search syntax, it is possible that the line is no longer included in the updated result. e.g. echo '!hello' | fzf --bind ctrl-v:replace-query Close #1137
2017-12-01Inject $LINES and $COLUMNS when running preview commandJunegunn Choi
Close #1168
2017-12-01Support binding of left-click and right-clickJunegunn Choi
left-click and right-click are respectively bound to "ignore" and "toggle" (after implicitly moving the cursor) by default. Close #1130
2017-10-160.17.10.17.1Junegunn Choi
2017-08-270.17.00.17.0Junegunn Choi
2017-08-27Make --expect additiveJunegunn Choi
Similarly to --bind or --color. --expect used to replace the previously specified keys, and fzf#wrap({'options': '--expect=f1'}) wouldn't work as expected. It forced us to come up with some ugly hacks like the following: https://github.com/junegunn/fzf.vim/blob/13b27c45c8bdf6c3a41376bb83e4895edadf8c7e/autoload/fzf/vim.vim#L1086
2017-08-020.16.110.16.11Junegunn Choi
2017-08-01[man] Add note on `--no-` conventionJunegunn Choi
Close #1003
2017-07-210.16.100.16.10Junegunn Choi