proxmox-backup/zsh-completions/_pmtx
2021-01-27 11:36:15 +01:00

14 lines
348 B
Plaintext

#compdef _pmtx() pmtx
function _pmtx() {
local cwords line point cmd curr prev
cworkds=${#words[@]}
line=$words
point=${#line}
cmd=${words[1]}
curr=${words[cwords]}
prev=${words[cwords-1]}
compadd -- $(COMP_CWORD="$cwords" COMP_LINE="$line" COMP_POINT="$point" \
pmtx bashcomplete "$cmd" "$curr" "$prev")
}