feat(glab): add GitLab CLI completions (#14113)

Closes #13054
This commit is contained in:
Alexei Mironov
2026-09-22 17:23:21 -07:00
committed by GitHub
parent 40bddc3c1a
commit 4ccc63333c
2 changed files with 36 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
# Autocompletion for the GitLab CLI (glab).
if (( ! $+commands[glab] )); then
return
fi
# If the completion file doesn't exist yet, we need to autoload it and
# bind it to `glab`. Otherwise, compinit will have already done that.
if [[ ! -f "$ZSH_CACHE_DIR/completions/_glab" ]]; then
typeset -g -A _comps
autoload -Uz _glab
_comps[glab]=_glab
fi
zmodload -F zsh/files b:zf_mv
() {
local TMPPREFIX="$ZSH_CACHE_DIR/completions/_glab"
zf_mv -f -- =( glab completion -s zsh ) "$TMPPREFIX"
} &|