From f9a93415bbf5b637b5a9bad28a4770d3effcf73e Mon Sep 17 00:00:00 2001 From: benbenbang Date: Thu, 26 Mar 2026 20:09:09 +0100 Subject: [PATCH] fix(adds-on): update shell completion setup example This commit updates the documentation in the help text to make the shell completion setup instructions more generic and clearer for users. **Documentation improvement:** * Changed the shell completion setup example in `adds-on/src/main.rs` from using `${fpath[1]}` to `` placeholder, making it clearer that users need to substitute their actual fpath location rather than literally using the array syntax. --- adds-on/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adds-on/src/main.rs b/adds-on/src/main.rs index ef2d74f..4138bcd 100644 --- a/adds-on/src/main.rs +++ b/adds-on/src/main.rs @@ -29,7 +29,7 @@ ENVIRONMENT: SETUP: export PATH=\"$(brew --prefix uv-shell)/libexec/bin:$PATH\" - uv generate-shell-completion zsh > \"\${fpath[1]}/_uv\" + uv generate-shell-completion zsh > \"/_uv\" Any unrecognised command is forwarded to the real uv unchanged." );