Skip to content

Commit b71cd4f

Browse files
committed
fix: use zsh-canonical ;| instead of bash-compat ;;&
Seer: While ;;\& works in both bash and zsh, ;| is the canonical zsh syntax for testing remaining case patterns.
1 parent 1000bdc commit b71cd4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/completions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ ${caseBranches}
419419
# Standalone command — delegate to dynamic completion
420420
;;
421421
esac
422-
;;&
422+
;|
423423
args)
424424
# Dynamic completion for positional args (org slugs, project names)
425425
# In the args state, $line[1] and $line[2] hold the parsed command

0 commit comments

Comments
 (0)