So you've installed `fzf` – now what?
21–30 of 292 posts
Re: So you've installed `fzf` – now what?
#22Re: So you've installed `fzf` – now what?
#23People's reaction when I showed them was basically WHAT IS THIS MAGIC?!?
Re: So you've installed `fzf` – now what?
#24Fantastic article. I was exactly in the situation the article describes, I installed it, then, didn't find a use case. But that's because Ubuntu doesn't come with completion enabled by default. You have to add in your bashrc: if [ -e /usr/share/doc/fzf/examples/key-bindings.bash ]; then source /usr/share/doc/fzf/examples/key-bindings.bash fi The fzf and ubuntu docs don't mention you have to. Couldn't find easily how…
Re: So you've installed `fzf` – now what?
#25I use atuin[0] instead of fzf as I find the experience a bit nicer and it has history backups built in (disclaimer, I am a maintainer)
Some of our users still prefer fzf because they are used to how it fuzzy finds, but we're running an experiment with skim[1] which allows us to embed the fuzzy engine without much overhead - hopefully giving them back that fzf-like experience
[0]: https://github.com/ellie/atuin [1]: https://github.com/lotabout/skim
Re: So you've installed `fzf` – now what?
#26 bindsym $mod+d exec --no-startup-id urxvt -title "fzf-menu-random123" -e bash -c 'i3-dmenu-desktop --dmenu=fzf'
for_window [title="fzf-menu-random123"] floating enableRe: So you've installed `fzf` – now what?
#27So, just like what fish shell gives out of the box :)
i love and daily-drive fish, but i don’t think fish does everything fzf does. did you stop reading the article at ctrl-r?
It's one of the few packages that I think genuinely enhance fish versus merely adding a bunch of cruft.
Re: So you've installed `fzf` – now what?
#28jump ( https://github.com/gsamokovarov/jump ) is something I use as I didn’t know about Alt-C. Highly recommended
Re: So you've installed `fzf` – now what?
#29jump ( https://github.com/gsamokovarov/jump ) is something I use as I didn’t know about Alt-C. Highly recommended
1. You are running jump for the first time. Have you integrated jump with your shell? Run the following command for help:
$ jump shell
If you have run the integration, enter a few directories in a new shell to
populate the database.
Are you coming from autojump or z? You can import their existing scoring
databases into jump with:
$ jump import
Doesn't work afaik / Tried all doesn't work how do you set this up @elAhmoRe: So you've installed `fzf` – now what?
#30So you don't need to do stuff like
vi $(find . '/' | fzf)
And instead can use fzf from inside the editor.It also supports integrating it with fdfind and ripgrep.