1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-26 16:38:34 +02:00

yazi: update shell integrations and docs

(cherry picked from commit a462e7315d)
This commit is contained in:
XYenon 2023-11-25 16:17:54 +08:00 committed by Robert Helgesson
parent f33900124c
commit d384a0d524
No known key found for this signature in database
GPG Key ID: 96E745BD17AA17ED
3 changed files with 11 additions and 11 deletions

View File

@ -21,7 +21,7 @@ let
function ya
set tmp (mktemp -t "yazi-cwd.XXXXX")
yazi --cwd-file="$tmp"
if set cwd (cat -- "$tmp") && [ -n "$cwd" ] && [ "$cwd" != "$PWD" ]
if set cwd (cat -- "$tmp"); and [ -n "$cwd" ]; and [ "$cwd" != "$PWD" ]
cd -- "$cwd"
end
rm -f -- "$tmp"
@ -29,10 +29,10 @@ let
'';
nushellIntegration = ''
def-env ya [] {
let tmp = (mktemp -t "yazi-cwd.XXXXX")
def --env ya [] {
let tmp = $"($env.TEMP)(char path_sep)yazi-cwd." + (random chars -l 5)
yazi --cwd-file $tmp
let cwd = (cat -- $tmp)
let cwd = (open $tmp)
if $cwd != "" and $cwd != $env.PWD {
cd $cwd
}
@ -82,7 +82,7 @@ in {
Configuration written to
{file}`$XDG_CONFIG_HOME/yazi/keymap.toml`.
See <https://github.com/sxyazi/yazi/blob/main/config/docs/keymap.md>
See <https://yazi-rs.github.io/docs/configuration/keymap>
for the full list of options.
'';
};
@ -107,7 +107,7 @@ in {
Configuration written to
{file}`$XDG_CONFIG_HOME/yazi/yazi.toml`.
See <https://github.com/sxyazi/yazi/blob/main/config/docs/yazi.md>
See <https://yazi-rs.github.io/docs/configuration/yazi>
for the full list of options.
'';
};
@ -131,7 +131,7 @@ in {
Configuration written to
{file}`$XDG_CONFIG_HOME/yazi/theme.toml`.
See <https://github.com/sxyazi/yazi/blob/main/config/docs/theme.md>
See <https://yazi-rs.github.io/docs/configuration/theme>
for the full list of options
'';
};

View File

@ -5,7 +5,7 @@ let
function ya
set tmp (mktemp -t "yazi-cwd.XXXXX")
yazi --cwd-file="$tmp"
if set cwd (cat -- "$tmp") && [ -n "$cwd" ] && [ "$cwd" != "$PWD" ]
if set cwd (cat -- "$tmp"); and [ -n "$cwd" ]; and [ "$cwd" != "$PWD" ]
cd -- "$cwd"
end
rm -f -- "$tmp"

View File

@ -2,10 +2,10 @@
let
shellIntegration = ''
def-env ya [] {
let tmp = (mktemp -t "yazi-cwd.XXXXX")
def --env ya [] {
let tmp = $"($env.TEMP)(char path_sep)yazi-cwd." + (random chars -l 5)
yazi --cwd-file $tmp
let cwd = (cat -- $tmp)
let cwd = (open $tmp)
if $cwd != "" and $cwd != $env.PWD {
cd $cwd
}