Plugin for fish to integrate fasd into efficiency-seeking workflows. Minimal without aliases, you can add aliases and completions for it easily.
Example:
functions/z.fish
function z -d "Change directory to first match"
fasd_cd -d $argv
end
completions/z.fish
complete -c z -a "(__fasd_print_completion -d)" -f
You will need fasd.
With fisherman:
$ fisher add jomik/fish-fasd
For more info, check out the complete fasd documentation.