summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2024-06-060.53.00.53.0Junegunn Choi
2024-06-06ADVANCED.md: /dev/tty redirection no longer requiredJunegunn Choi
2024-06-06hasPreviewFlags should ignore escaped placeholderJunegunn Choi
This reload command wouldn't run before the fix: : | fzf --bind 'start:reload:echo \{}'
2024-06-06Update docsJunegunn Choi
2024-06-06Fix index out of bounds error caused by outdated offsetJunegunn Choi
2024-06-05[man] Clarification on --scheme optionsJunegunn Choi
2024-06-05Handle int32 overflowJunegunn Choi
yes | fzf --tail=10 --preview 'echo "{n}"'
2024-06-04Add --tail=NUM to limit the number of items to keep in memoryJunegunn Choi
2024-06-03Add new options to bash completionJunegunn Choi
2024-06-03Update ADVANCED.md: Use --tmux instead of fzf-tmuxJunegunn Choi
2024-06-02Fix invalid default of selected-hl (--color)Junegunn Choi
It should default to 'hl' instead of 'current-hl'
2024-06-02Merge remote-tracking branch 'origin/master' into develJunegunn Choi
2024-06-02Update CHANGELOG: clarificationJunegunn Choi
2024-06-02Deploying to master from @ ↵junegunn
junegunn/fzf@124cd70710cb7c94ef2282773494bb0d727598d8 🚀
2024-06-01--tmux vs. --height: Last one winsJunegunn Choi
2024-06-01Update READMEJunegunn Choi
2024-06-01Immediately close standard output of the child processJunegunn Choi
Fix #3828
2024-06-01Do not disable --height on mintty (because it works)Junegunn Choi
2024-06-01Fix --height on WindowsJunegunn Choi
2024-06-01Ignore --height option if it's not supported on the platformJunegunn Choi
This is to make shell integration work out of the box on Git bash. eval "$(fzf --bash)" vim <CTRL-T> # would print '--height option is currently not supported on this platform'
2024-06-01Set standard input of 'man' process to os.StdinJunegunn Choi
2024-06-01Revert "An '--expect' key should execute actions bound to the key"Junegunn Choi
To be backward compatible. Close #3829
2024-06-01[fish] Use builtins for cd and history (#3830)LangLangBart
Close #3826
2024-05-31Update CHANGELOGJunegunn Choi
2024-05-31Fix error message on invalid --tmux optionJunegunn Choi
fzf --tmux foobar # not a valid integer: foobar # -> # invalid tmux option: foobar (expected: [center|top|bottom|left|right][,SIZE[%]][,SIZE[%]])
2024-05-31[zsh] Enhance CTRL-R to display multi-line entires (#3823)LangLangBart
Co-authored-by: Junegunn Choi <junegunn.c@gmail.com>
2024-05-31[fish] Add --nth 2..,.. to allow anchored search against commandJunegunn Choi
2024-05-31Fix index out of bounds error on scroll-down actionJunegunn Choi
2024-05-31[bash] Indent multi-line history entriesJunegunn Choi
2024-05-30[fish] Use perl instead of sed to strip leading tabsJunegunn Choi
https://github.com/junegunn/fzf/pull/3807#discussion_r1619520105
2024-05-29[fish] Better multi-line support for CTRL-RJunegunn Choi
Prepend each entry with an index number so that multi-line entries can be clearly distinguished.
2024-05-29[shell] Add --highlight-line to CTRL-R bindingsJunegunn Choi
2024-05-29Make --tmux argument optionalJunegunn Choi
2024-05-29Pass-through error message from 'tmux display-popup'Junegunn Choi
fzf --tmux 9999 # height too large
2024-05-28Merge branch 'master' into develJunegunn Choi
2024-05-28[vim] Do not prepend CWD to path starting with a backslash on Windows (#3820)Konstantin-Glukhov
Co-authored-by: Junegunn Choi <junegunn.c@gmail.com>
2024-05-28[vim] Native --tmux fix for NeovimJunegunn Choi
2024-05-27Add multi-line example to CHANGELOGJunegunn Choi
2024-05-27Different marker for the first and last line of multi-line entriesJunegunn Choi
Can be configured via `--marker-multi-line`
2024-05-26Fix --help output: marker defaultJunegunn Choi
Co-authored-by: LangLangBart <92653266+LangLangBart@users.noreply.github.com>
2024-05-26Deploying to master from @ ↵junegunn
junegunn/fzf@daa602422dc272cbec6b99bc7520262672ad7230 🚀
2024-05-25Do not allow tabs in pointer and markerJunegunn Choi
2024-05-25Fix option validation orderJunegunn Choi
2024-05-25Update integration test to use named pipesJunegunn Choi
2024-05-25Update CHANGELOGJunegunn Choi
2024-05-24Describe exit code 126Junegunn Choi
2024-05-24Change default --scroll-off to 3Junegunn Choi
2024-05-24Fix --scroll-off for multi-line modeJunegunn Choi
2024-05-24Fix incorrect colors for selected-{fg,bg,hl}Junegunn Choi
When a non-default base color scheme is specified, fzf would choose incorrect colors for selected-*. fzf --color 'light,fg:238,bg:255,bg+:253' -m
2024-05-24Use bold bar as the default markerJunegunn Choi