dotfiles/fish.configlink/functions/fcd.fish

5 lines
215 B
Fish
Raw Normal View History

2021-05-08 21:39:52 +00:00
# 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