mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-10 18:57:22 +00:00
9 lines
234 B
Fish
9 lines
234 B
Fish
|
function yy
|
||
|
set -l tmp (mktemp -t "yazi-cwd.XXXXX")
|
||
|
command yazi $argv --cwd-file="$tmp"
|
||
|
if set cwd (cat -- "$tmp"); and [ -n "$cwd" ]; and [ "$cwd" != "$PWD" ]
|
||
|
builtin cd -- "$cwd"
|
||
|
end
|
||
|
rm -f -- "$tmp"
|
||
|
end
|