yazi: fix nushell integration
This commit is contained in:
parent
f772334b35
commit
992b38f29c
|
@ -30,8 +30,12 @@ let
|
||||||
|
|
||||||
nushellIntegration = ''
|
nushellIntegration = ''
|
||||||
def --env ya [args?] {
|
def --env ya [args?] {
|
||||||
let tmp = $"($env.TEMP)(char path_sep)yazi-cwd." + (random chars -l 5)
|
let tmp = (mktemp -t "yazi-cwd.XXXXX")
|
||||||
|
if ($args == null) {
|
||||||
|
yazi --cwd-file $tmp
|
||||||
|
} else {
|
||||||
yazi $args --cwd-file $tmp
|
yazi $args --cwd-file $tmp
|
||||||
|
}
|
||||||
let cwd = (open $tmp)
|
let cwd = (open $tmp)
|
||||||
if $cwd != "" and $cwd != $env.PWD {
|
if $cwd != "" and $cwd != $env.PWD {
|
||||||
cd $cwd
|
cd $cwd
|
||||||
|
|
|
@ -3,8 +3,12 @@
|
||||||
let
|
let
|
||||||
shellIntegration = ''
|
shellIntegration = ''
|
||||||
def --env ya [args?] {
|
def --env ya [args?] {
|
||||||
let tmp = $"($env.TEMP)(char path_sep)yazi-cwd." + (random chars -l 5)
|
let tmp = (mktemp -t "yazi-cwd.XXXXX")
|
||||||
|
if ($args == null) {
|
||||||
|
yazi --cwd-file $tmp
|
||||||
|
} else {
|
||||||
yazi $args --cwd-file $tmp
|
yazi $args --cwd-file $tmp
|
||||||
|
}
|
||||||
let cwd = (open $tmp)
|
let cwd = (open $tmp)
|
||||||
if $cwd != "" and $cwd != $env.PWD {
|
if $cwd != "" and $cwd != $env.PWD {
|
||||||
cd $cwd
|
cd $cwd
|
||||||
|
|
Loading…
Reference in a new issue