mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-25 17:23:35 +01:00
10 lines
233 B
Plaintext
10 lines
233 B
Plaintext
|
#compdef opswd
|
||
|
|
||
|
function _opswd() {
|
||
|
local -a services
|
||
|
services=("${(@f)$(op list items --categories Login 2>/dev/null | op get item - --fields title 2>/dev/null)}")
|
||
|
[[ -z "$services" ]] || compadd -a -- services
|
||
|
}
|
||
|
|
||
|
_opswd "$@"
|