mirror of
https://github.com/nix-community/home-manager.git
synced 2026-01-11 17:39:37 +08:00
@@ -30,8 +30,12 @@ let
|
||||
|
||||
nushellIntegration = ''
|
||||
def --env ya [args?] {
|
||||
let tmp = $"($env.TEMP)(char path_sep)yazi-cwd." + (random chars -l 5)
|
||||
yazi $args --cwd-file $tmp
|
||||
let tmp = (mktemp -t "yazi-cwd.XXXXX")
|
||||
if ($args == null) {
|
||||
yazi --cwd-file $tmp
|
||||
} else {
|
||||
yazi $args --cwd-file $tmp
|
||||
}
|
||||
let cwd = (open $tmp)
|
||||
if $cwd != "" and $cwd != $env.PWD {
|
||||
cd $cwd
|
||||
|
||||
@@ -3,8 +3,12 @@
|
||||
let
|
||||
shellIntegration = ''
|
||||
def --env ya [args?] {
|
||||
let tmp = $"($env.TEMP)(char path_sep)yazi-cwd." + (random chars -l 5)
|
||||
yazi $args --cwd-file $tmp
|
||||
let tmp = (mktemp -t "yazi-cwd.XXXXX")
|
||||
if ($args == null) {
|
||||
yazi --cwd-file $tmp
|
||||
} else {
|
||||
yazi $args --cwd-file $tmp
|
||||
}
|
||||
let cwd = (open $tmp)
|
||||
if $cwd != "" and $cwd != $env.PWD {
|
||||
cd $cwd
|
||||
|
||||
Reference in New Issue
Block a user