dotfiles/private_dot_config/nushell/scripts/yazi.nu
2025-12-21 10:18:05 -05:00

9 lines
186 B
Text

def --env yy [...args] {
let tmp = (mktemp -t "yazi-cwd.XXXXXX")
yazi ...$args --cwd-file $tmp
let cwd = (open $tmp)
if $cwd != "" and $cwd != $env.PWD {
cd $cwd
}
rm -fp $tmp
}