1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2025-02-19 18:04:30 +01:00
ohmyzsh/plugins/sops/sops.plugin.zsh
2024-10-23 09:11:44 +02:00

23 lines
432 B
Bash

# Completion
if (( ! $+commands[sops] )); then
return
fi
_sops() {
local -a opts
local cur
cur=${words[-1]}
if [[ "$cur" == "-"* ]]; then
opts=("${(@f)$(${words[@]:0:#words[@]-1} ${cur} --generate-shell-completion)}")
else
opts=("${(@f)$(${words[@]:0:#words[@]-1} --generate-shell-completion)}")
fi
if [[ "${opts[1]}" != "" ]]; then
_describe 'values' opts
else
_files
fi
}
compdef _sops sops