summaryrefslogtreecommitdiffstats
path: root/man
AgeCommit message (Collapse)Author
2021-06-010.27.20.27.2Junegunn Choi
2021-05-26Allow specifying 16 base ANSI colors by their namesJunegunn Choi
Close #2502
2021-05-220.27.10.27.1Junegunn Choi
2021-05-22Add 'unbind' actionJunegunn Choi
Fix #2486
2021-05-22[man] Clarification on --select-1 and --exit-0Junegunn Choi
2021-04-060.27.00.27.0Junegunn Choi
2021-04-06Change --preview-window delimiter from : to , for consistencyJunegunn Choi
Delimiter : was chosen when --preview-option only supported position and size attributes. e.g. up:50%
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-25Add select and deselect actionsJunegunn Choi
Close #2358
2021-02-02Add `close` actionJunegunn Choi
Close #2331
2021-02-01[man] Clarify that $SHELL is used to run commands (#2334)step
SHELL is used for execute actions and the preview and default commands.
2021-01-10[man] Fix typoJunegunn Choi
2021-01-030.25.00.25.0Junegunn Choi
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-050.24.40.24.4Junegunn Choi
2020-12-05Add --preview-window follow optionJunegunn Choi
2020-12-04Add change-prompt actionJunegunn Choi
Close #2270
2020-11-24Fix handling of arrow keys with alt and/or shift modifierJunegunn Choi
Fix #2254 - Properly handle extra chars in the buffer. Patch suggested by @mckelly2833. - Support alt-arrow sequences in \e[1;3A format - Support shift-alt-arrow sequences in \e[1;10A format
2020-11-09Add --padding optionJunegunn Choi
Close #2241
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-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