Files
fish-config/functions/y.fish
T
2026-04-20 09:40:17 +02:00

11 lines
237 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"
clear
lls
end