[*] Multiple new configs

This commit is contained in:
2026-03-31 15:43:26 +02:00
parent dbebcef215
commit 819959b395
29 changed files with 6930 additions and 229 deletions

View File

@@ -0,0 +1,8 @@
function y
set tmp (mktemp -t "yazi-cwd.XXXXXX")
command yazi $argv --cwd-file="$tmp"
if read -z cwd < "$tmp"; and [ "$cwd" != "$PWD" ]; and test -d "$cwd"
builtin cd -- "$cwd"
end
rm -f -- "$tmp"
end