Augment your Fish command line with mnemonic key bindings to efficiently find what you need using fzf.
Use fzf.fish
to interactively find and insert into the command line:
- Search input: recursive listing of current directory's files
- Key binding and mnemonic: Ctrl+F (
F
for file) - Preview window: file with syntax highlighting, directory contents, or file type
- Remarks
- appends
./
to the selection if the selection is a single directory, allowing for quick cd into that directory (see cd docs) - ignores files that are also ignored by git
- Tab to multi-select
- appends
- Search input: the current repository's
git status
- Key binding and mnemonic: Ctrl+Alt+S (
S
for status,Alt
to prevent overridingpager-toggle-search
) - Remarks: Tab to multi-select
- Search input: the current repository's formatted
git log
- Key binding and mnemonic: Ctrl+Alt+L (
L
for log,Alt
to prevent overriding clear screen) - Preview window: commit message and diff
- Search input: the command history from all interactive sessions of Fish
- Key binding and mnemonic: Ctrl+R (
R
for reverse-i-search)
- Search input: all the variable names of the environment, both local and exported
- Key binding and mnemonic: Ctrl+V (
V
for variable) - Preview window: the scope info and values of the variable
- Remarks
$history
is excluded for technical reasons so use the search command history feature instead to inspect it
The prompt used in the screencasts was created using IlanCosman/tide.
First, make sure you're using Fish 3.1.2
or newer.
$ fish --version
fish, version 3.1.2
Next, install with Fisher.
fzf.fish
can be installed manually or with other plugin managers but only Fisher is officially supported.
fisher install PatrickF1/fzf.fish
Finally, install the following CLI tools:
- fzf - command-line fuzzy finder that powers this plugin
- fd - much faster and friendlier alternative to
find
- bat - smarter
cat
with syntax highlighting (used to preview files)
For macOS, I recommend installing them using brew.
On certain distribution of Linux, you will need to alias fdfind
to fd
(see #23).
If you would like to customize the key bindings, first, prevent the default key bindings from executing by setting fzf_fish_custom_keybindings
as an universal variable. You can do this with
set --universal fzf_fish_custom_keybindings
Do not try to set fzf_fish_custom_keybindings
in your config.fish
because the key binding configuration is sourced first on shell startup and so will not see it.
Next, set your own key bindings by following conf.d/fzf.fish as an example.
fzf supports setting default options via the FZF_DEFAULT_OPTS environment variable. If it is set, fzf will implicitly prepend its value to the options passed in on every execution, scripted or interactive.
To make fzf's interface friendlier, fzf.fish
takes the liberty of setting a sane FZF_DEFAULT_OPTS
if it is not already set. See conf.d/fzf.fish for more details. This affects fzf even outside of this plugin. If you would like to remove this side effect or just want to customize fzf's default options, then set your own FZF_DEFAULT_OPTS
universal variable. For example:
set --universal --export FZF_DEFAULT_OPTS --height 50% --margin 1
Alternatively, you can override it in your config.fish
:
set --export FZF_DEFAULT_OPTS --height 50% --margin 1
jethrokuan/fzf is another fzf plugin that provides similar features and is prevalent in the fish community (470+ stargazers and 30 contributors, including me). In fact, I referenced it when creating this plugin—thank you Jethro!
So why another fzf plugin? While contributing to jethrokuan/fzf
, I was discouraged by the complexity and inefficiency of the code that resulted from feature cruft (e.g. it provides multiple overlapping ways to action on files: find, cd, and open) and poor design decisions (e.g. Tmux support was implemented using a variable command). Moreover, Jethro has lost interest in his plugin (he later confirmed to me that he stopped using fish). Wanting a sharper tool and to give back to the community, I decided to write my own plugin.
After much work, fzf.fish
now implements most of the same features but is faster, easier to maintain, and more Unix-y. I also added new features: using fzf to search git status, git log, and shell variables. However, I chose not to implement Tmux support, because users can easily add support externally themselves; and tab completion, because even jethrokuan/fzf
's implementation of it is buggy as evidenced by the many issues reported about it.
TLDR: choose fzf.fish
over jethrokuan/fzf if you want
- faster, more efficient, code
- code that is easier to debug if you encounter issues
- a tool built on Unix philosophy
- a plugin that is more likely to attract future contributors because it is more maintainable
- a plugin that will be more frequently updated by its author (Jethro no longer uses fish)
- features for searching git status, git log, and shell variables
and you don't mind
- having to integrate fzf with Tmux yourself, which is easy to do
- not having buggy fzf tab completion
Fzf optionally comes with its own Fish extension. It is substantial but fzf.fish
has these advantages over it:
- features for searching git status, git log, and shell variables
- timestamps when searching command history
- colorized results when searching for files
- previews when searching for files
- configurable key bindings
- autoloaded functions for faster shell startup
- easier to read, maintain, and contribute to
- better maintained
- Execute
bind
and check if there are bindings overriding the bindings starting with__fzf_
. - Ensure jethrokuan/fzf and the Fish extension that ships with fzf are uninstalled.
- Ensure you're using Fish 3.1.2 or newer.
- In your terminal's settings, map Option to Meta (see #54).
- If you are on certain distribution of Linux, you will need to alias
fdfind
tofd
(see #23). fd
, by default, ignores files also ignored by git. Check your local and global.gitignore
files to see if the files not showing up have been ignored.