[cli] Slightly improve zsh completions

This commit is contained in:
Jarred Sumner
2021-11-01 04:41:46 -07:00
parent 3d48bdaad1
commit 1676af9de9

View File

@@ -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