Files
dotfiles/sources/fish/functions/y.fish
T
2025-11-11 14:11:20 +01:00

9 lines
219 B
Fish

function y
set tmp (mktemp -t "yazi-cwd.XXXXXX")
yazi $argv --cwd-file="$tmp"
if read -z cwd <"$tmp"; and [ -n "$cwd" ]; and [ "$cwd" != "$PWD" ]
builtin cd -- "$cwd"
end
rm -f -- "$tmp"
end