From 6e98af11e49bc55e9dfe2892dded542b235641cf Mon Sep 17 00:00:00 2001 From: ndrew222 <38881000+ndrew222@users.noreply.github.com> Date: Sun, 30 Mar 2025 14:53:30 +0800 Subject: [PATCH 1/2] changed where the fish completions get installed to where fish docs recommend --- docs/getting-started/installation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/getting-started/installation.md b/docs/getting-started/installation.md index 9c7ebbc137af8..003d9929a6c2d 100644 --- a/docs/getting-started/installation.md +++ b/docs/getting-started/installation.md @@ -179,7 +179,7 @@ To enable shell autocompletion for uv commands, run one of the following: === "fish" ```bash - echo 'uv generate-shell-completion fish | source' >> ~/.config/fish/config.fish + echo 'uv generate-shell-completion fish | source' >> ~/.config/fish/completions/uv.fish ``` === "Elvish" @@ -214,7 +214,7 @@ To enable shell autocompletion for uvx, run one of the following: === "fish" ```bash - echo 'uvx --generate-shell-completion fish | source' >> ~/.config/fish/config.fish + echo 'uvx --generate-shell-completion fish | source' >> ~/.config/fish/completions/uvx.fish ``` === "Elvish" From cf105823304650fd4b2a5d5004ec4163883c8b4b Mon Sep 17 00:00:00 2001 From: ndrew222 <38881000+ndrew222@users.noreply.github.com> Date: Sun, 27 Apr 2025 21:17:52 +0800 Subject: [PATCH 2/2] changed >> to > --- docs/getting-started/installation.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/getting-started/installation.md b/docs/getting-started/installation.md index aaf7a1c7d2d2e..22f3cc8554a46 100644 --- a/docs/getting-started/installation.md +++ b/docs/getting-started/installation.md @@ -179,7 +179,7 @@ To enable shell autocompletion for uv commands, run one of the following: === "fish" ```bash - echo 'uv generate-shell-completion fish | source' >> ~/.config/fish/completions/uv.fish + echo 'uv generate-shell-completion fish | source' > ~/.config/fish/completions/uv.fish ``` === "Elvish" @@ -214,7 +214,7 @@ To enable shell autocompletion for uvx, run one of the following: === "fish" ```bash - echo 'uvx --generate-shell-completion fish | source' >> ~/.config/fish/completions/uvx.fish + echo 'uvx --generate-shell-completion fish | source' > ~/.config/fish/completions/uvx.fish ``` === "Elvish"