dotfiles/private_dot_config/nushell/scripts/yazi.nu
Mira Kristipati 7af2a5e131 updates
2024-04-14 20:34:40 -04: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
}