Files
superior_dotfiles/private_dot_config/private_fish/functions/y.fish
Szymon P 02396527ed Update .config/fish/functions/y.fish
Update .config/yazi/keymap.toml
2025-06-11 12:48:05 +02:00

9 lines
199 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