diff options
author | 2021-11-01 04:41:46 -0700 | |
---|---|---|
committer | 2021-11-01 04:41:46 -0700 | |
commit | 1676af9de975cf1c843711c8f508204aef63de12 (patch) | |
tree | 42f23ee432403abb4d40593a9a74d6de4e2e4b9a | |
parent | 3d48bdaad1c4099dd2db59aec95858c5e6c010c9 (diff) | |
download | bun-1676af9de975cf1c843711c8f508204aef63de12.tar.gz bun-1676af9de975cf1c843711c8f508204aef63de12.tar.zst bun-1676af9de975cf1c843711c8f508204aef63de12.zip |
[cli] Slightly improve zsh completionsbun-v0.0.42
Diffstat (limited to '')
-rw-r--r-- | completions/bun.zsh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/completions/bun.zsh b/completions/bun.zsh index f63861e0b..13801931e 100644 --- a/completions/bun.zsh +++ b/completions/bun.zsh @@ -37,12 +37,14 @@ _bun() { # Load custom completion commands case "$(__bun_first_cmd)" in create) + _files return; ;; dev) return; ;; bun) + _files return; ;; upgrade) @@ -53,6 +55,7 @@ _bun() { ;; run) _bun_run + return; ;; esac |