diff options
| author | bretello <bretello@users.noreply.github.com> | 2025-03-20 19:44:01 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-20 19:44:01 +0100 |
| commit | 070f823a84642ba93b844fa80382e8375ca941c8 (patch) | |
| tree | e0987573d47919a9e3b855340b32e3178c3e707f | |
| parent | 6591606d566cb37d53a7b996f0ff05a59998dc16 (diff) | |
| download | zsh-070f823a84642ba93b844fa80382e8375ca941c8.tar.gz zsh-070f823a84642ba93b844fa80382e8375ca941c8.tar.bz2 zsh-070f823a84642ba93b844fa80382e8375ca941c8.zip | |
feat(uv): alias `uv` with `noglob` (#12866)
| -rw-r--r-- | plugins/uv/uv.plugin.zsh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/uv/uv.plugin.zsh b/plugins/uv/uv.plugin.zsh index f1ad37e15..abcbc117e 100644 --- a/plugins/uv/uv.plugin.zsh +++ b/plugins/uv/uv.plugin.zsh @@ -3,6 +3,8 @@ if (( ! ${+commands[uv]} )); then return fi +alias uv="noglob uv" + alias uva='uv add' alias uvexp='uv export --format requirements-txt --no-hashes --output-file requirements.txt --quiet' alias uvl='uv lock' |
