1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-18 12:38:30 +02:00

yazi: update shell integrations (#5048)

This commit is contained in:
XYenon 2024-02-27 07:00:56 +08:00 committed by GitHub
parent 4ee704cb13
commit 1d085ea444
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 9 additions and 17 deletions

View File

@ -8,7 +8,7 @@ let
bashIntegration = ''
function ya() {
tmp="$(mktemp -t "yazi-cwd.XXXXX")"
local tmp="$(mktemp -t "yazi-cwd.XXXXX")"
yazi "$@" --cwd-file="$tmp"
if cwd="$(cat -- "$tmp")" && [ -n "$cwd" ] && [ "$cwd" != "$PWD" ]; then
cd -- "$cwd"
@ -29,18 +29,14 @@ let
'';
nushellIntegration = ''
def --env ya [args?] {
def --env ya [...args] {
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)
if $cwd != "" and $cwd != $env.PWD {
cd $cwd
}
rm -f $tmp
rm -fp $tmp
}
'';
in {

View File

@ -3,7 +3,7 @@
let
shellIntegration = ''
function ya() {
tmp="$(mktemp -t "yazi-cwd.XXXXX")"
local tmp="$(mktemp -t "yazi-cwd.XXXXX")"
yazi "$@" --cwd-file="$tmp"
if cwd="$(cat -- "$tmp")" && [ -n "$cwd" ] && [ "$cwd" != "$PWD" ]; then
cd -- "$cwd"

View File

@ -2,18 +2,14 @@
let
shellIntegration = ''
def --env ya [args?] {
def --env ya [...args] {
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)
if $cwd != "" and $cwd != $env.PWD {
cd $cwd
}
rm -f $tmp
rm -fp $tmp
}
'';
in {

View File

@ -3,7 +3,7 @@
let
shellIntegration = ''
function ya() {
tmp="$(mktemp -t "yazi-cwd.XXXXX")"
local tmp="$(mktemp -t "yazi-cwd.XXXXX")"
yazi "$@" --cwd-file="$tmp"
if cwd="$(cat -- "$tmp")" && [ -n "$cwd" ] && [ "$cwd" != "$PWD" ]; then
cd -- "$cwd"