dotfiles/modules/common/shell/fish/functions/fcd.fish
2023-02-20 20:37:37 -05:00

11 lines
220 B
Fish

if test -z $directory
set directory "$HOME"
end
if ! test -d $directory
echo "Directory not found: $directory"
return 1
end
set jump (fd -t d . $directory | fzf)
and cd $jump $argv
and commandline -f execute