dotfiles/private_dot_config/private_fish/conf.d/fuzzy_cd.fish
2023-04-30 01:21:51 +03:00

10 lines
210 B
Fish

if functions -q __fuzzy_cd
if test -d ~/.marks && test (which fasd)
if not functions -q __fuzzy_wrapped_cd
functions -c cd __fuzzy_wrapped_cd
end
functions -e cd
functions -c __fuzzy_cd cd
end
end