Noticing more people using this â looks like a useful tool for quickly finding things.
If you use zsh add
source <(fzf --zsh)
to .zshrc
for bash add eval "$(fzf --bash)" to .bashrc
and then try
Ctrl-R - search history
Ctrl-T - Tab completions
Alt-C - Directory navigation
kill -9 **<TAB> - Kill a process
** syntax triggers fzfâs search window
For git there is - GitHub - junegunn/fzf-git.sh: bash, zsh, and fish key bindings for Git objects, powered by fzf
For systemctl - GitHub - joehillen/sysz: An fzf terminal UI for systemctl
1 Like