0.55.0
Release highlights: https://junegunn.github.io/fzf/releases/0.55.0/
- Added
exact-boundary-matchtype to the search syntax. When a search term is single-quoted, fzf will search for the exact occurrences of the string with both ends at word boundaries.fzf --query "'here'" << EOF come here not there EOF
- [bash] Fuzzy path completion is enabled for all commands
-
- If the default completion is not already set
-
- And if the current bash supports
complete -Doption
- And if the current bash supports
- However, fuzzy completion for some commands can be "dynamically" disabled by the dynamic completion loader
- See the comment in
__fzf_default_completionfunction for more information
-
- Comments are now allowed in
$FZF_DEFAULT_OPTSand$FZF_DEFAULT_OPTS_FILEexport FZF_DEFAULT_OPTS=' # Layout options --layout=reverse --info=inline-right # Show info on the right side of the prompt line # ... '
- Hyperlinks (OSC 8) are now supported in the preview window and in the main window
printf '<< \e]8;;http://github.com/junegunn/fzf\e\\Link to \e[32mfz\e[0mf\e]8;;\e\\ >>' | fzf --ansi fzf --preview "printf '<< \e]8;;http://github.com/junegunn/fzf\e\\Link to \e[32mfz\e[0mf\e]8;;\e\\ >>'"
- The default
--ellipsisis now··instead of... - [vim] A spec can have
exitcallback that is called with the exit status of fzf- This can be used to clean up temporary resources or restore the original state when fzf is closed without a selection
- Fixed
--tmux bottomwhen the status line is not at the bottom - Fixed extra scroll offset in multi-line mode (
--read0or--wrap) - Added fallback
pscommand forkillcompletion on Cygwin