Skip to content

Commit

Permalink
docs: specify cd-command in fish shell wrapper (#135)
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnFinn authored Sep 4, 2024
1 parent 213e7d5 commit 149bab6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function yy
set tmp (mktemp -t "yazi-cwd.XXXXXX")
yazi $argv --cwd-file="$tmp"
if set cwd (command cat -- "$tmp"); and [ -n "$cwd" ]; and [ "$cwd" != "$PWD" ]
cd -- "$cwd"
builtin cd -- "$cwd"
end
rm -f -- "$tmp"
end
Expand Down

0 comments on commit 149bab6

Please sign in to comment.