1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-09-21 05:47:29 +02:00

yazi: fix nushell integration

This commit is contained in:
XYenon 2024-01-04 03:18:53 +08:00 committed by Mikilio
parent 45724218f2
commit 21e8b7a7df
No known key found for this signature in database
GPG key ID: 5B2F1A890CF33F3F
2 changed files with 12 additions and 4 deletions

View file

@ -30,8 +30,12 @@ let
nushellIntegration = ''
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
}
let cwd = (open $tmp)
if $cwd != "" and $cwd != $env.PWD {
cd $cwd

View file

@ -3,8 +3,12 @@
let
shellIntegration = ''
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
}
let cwd = (open $tmp)
if $cwd != "" and $cwd != $env.PWD {
cd $cwd