9 lines
186 B
Text
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
|
|
}
|