summaryrefslogtreecommitdiffstats
path: root/README.md
AgeCommit message (Collapse)Author
2021-04-060.27.00.27.0Junegunn Choi
2021-03-25Update README (--phony -> --disabled) (#2404)Philipp Schmitt
2021-02-17README.md: Better exampleJunegunn Choi
2021-02-17Update README.md (#2353)Hussein Esmail
Remove Linuxbrew links since Linuxbrew has been merged into Homebrew * https://brew.sh/2019/02/02/homebrew-2.0.0/
2021-02-03Clarification on FZF_DEFAULT_COMMANDJunegunn Choi
2021-02-01Update README.md (#2337)Kovarththanan Rajaratnam
--phony was renamed to --disabled in d779ff7e6dcf068fbcf743bed45127c3b857ec92
2021-01-15Replace Travis CI badgeJunegunn Choi
2021-01-13Update README.md (#2321)Vlad Doster
- Correct spelling/grammar
2021-01-07Update README to upgrade using brew upgrade (#2309)nicolasbarra
2021-01-030.25.00.25.0Junegunn Choi
2020-10-270.24.0-rc10.24.0-rc1Junegunn Choi
2020-10-23Clarify that additional installation steps may be requiredJunegunn Choi
Close #2211
2020-10-18Implement streaming preview window (#2215)Junegunn Choi
Fix #2212 # Will start rendering after 200ms, update every 100ms fzf --preview 'for i in $(seq 100); do echo $i; sleep 0.01; done' # Should print "Loading .." message after 500ms fzf --preview 'sleep 1; for i in $(seq 100); do echo $i; sleep 0.01; done' # The first line should appear after 200ms fzf --preview 'date; sleep 2; date' # Should not render before enough lines for the scroll offset are ready rg --line-number --no-heading --color=always ^ | fzf --delimiter : --ansi --preview-window '+{2}-/2' \ --preview 'sleep 1; bat --style=numbers --color=always --pager=never --highlight-line={2} {1}'
2020-10-05Show how to use reload actionJunegunn Choi
2020-07-05README: Correct Nix distro support (#2051)Atemu
Nix can be installed on (almost) any Linux distro and on macOS. See https://nixos.org/nix/ for more information.
2020-07-03Void Linux installation instructions (#2100)anntnzrb
2020-06-04README: Use --line-range instead of head in bat example (#2064)Janek
* Use --line-range instead of head in bat example * README: extend preview section
2020-04-18Add conda installation instructionJunegunn Choi
Close #1949
2020-04-18Add more details on apt installation in README.md (#1977)Janek
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-11Change custom fuzzy completion APIJunegunn Choi
To make it easier to write more complex fzf options. Although this does not break backward compatibility, users are encouraged to update their code accordingly. # Before _fzf_complete "FZF_ARG1 FZF_ARG2..." "$@" < <( # Print candidates ) # After _fzf_complete FZF_ARG1 FZF_ARG2... -- "$@" < <( # Print candidates )
2020-02-26Update README.md: MacPorts upgrade instruction (#1893)Chris
2020-02-20[completion] Allow users to customize fzf options via _fzf_comprunJunegunn Choi
Related #1809 #1850
2020-02-14[vim] Add fzf#install() for downloading fzf binaryJunegunn Choi
2020-02-04README: OpenBSD package (#1848)Sergey Bronnikov
2020-01-25Update copyright year (#1832)Shun Sakai
Update copyright year to 2020 and change to multi-year format.
2020-01-19Period.Junegunn Choi
2020-01-19Show error message when failed to start preview command (#1810)Tony Metzidis
Fix #1637
2020-01-08[bash] Populate emacs and vi keymaps (#1815)Jack Bates
Enables the right bindings when switching between editing modes.
2019-12-20[bash-completion] Fix default alias/variable completionJunegunn Choi
Fix #1795
2019-12-180.20.00.20.0Junegunn Choi
2019-12-13Revert README as preview-{fg,bg} are only available on masterJunegunn Choi
2019-12-13Update README/CHANGELOGJunegunn Choi
2019-12-06Mention _fzf_setup_completion helper function for bashJunegunn Choi
2019-12-05Update installation instructionJunegunn Choi
Close #1707 Close #1779
2019-12-01Update installation instruction using Linux package managersJunegunn Choi
Added NixOS instruction. Close #1731
2019-08-06Add scoop mention (#1646)Ross Smith II
2019-07-17Add installation instructions for openSUSE (#1631)Dan Čermák
2019-07-17Add Debian install instructions (#1620)miclill
2019-06-05Add FreeBSD installation instructions (#1569)Mateusz Piotrowski
2019-04-18Add demo screencast video to README (#1557)Alexey Samoshkin
2019-03-29[doc] Add bat for preview syntax highlighting example (#1538)AnakinXL
Similar to this PR from fzf.vim: https://github.com/junegunn/fzf.vim/pull/712
2019-03-18Add MacPorts instructionJunegunn Choi
Close #1521
2018-11-09Typo & grammar fixes in README (#1413)Christian Muehlhaeuser
2018-09-27Add link to related projects pageJunegunn Choi
2018-09-04Add link to git key bindings gistJunegunn Choi
2018-06-10Provide an option to reverse items only (#1267)Akinori MUSHA
2018-05-14Remove -y flag from Arch Linux installation (#1290)Daniel Gray
https://wiki.archlinux.org/index.php/Partial_upgrades#Partial_upgrades_are_unsupported You should never `pacman -Sy <pkg>`, Arch users are expected to keep their system already up-to-date before installing anything.
2018-05-04Clarify Vim plugin instructionJunegunn Choi
Close #1251 @amaravora
2018-05-04Add Arch Linux installation instructionJunegunn Choi
Close #1273 @codingCoffee