dotfiles/fish.configlink/functions/fcd.fish
2021-05-08 17:39:52 -04:00

5 lines
215 B
Fish

# Defined via `source`
function fcd --wraps='set jump (fd -t d . ~ | fzf); and cd $jump' --description 'alias fcd set jump (fd -t d . ~ | fzf); and cd $jump'
set jump (fd -t d . ~ | fzf); and cd $jump $argv;
end