1
0
Fork 0
oh-my-zsh/plugins/1password/_opswd

10 lines
226 B
Text
Raw Permalink Normal View History

#compdef opswd
function _opswd() {
local -a services
services=("${(@f)$(op item list --categories Login --cache 2>/dev/null | awk 'NR != 1 { print $2 }')}")
[[ -z "$services" ]] || compadd -a -- services
}
_opswd "$@"