blob: 31d6475864214e2cdba148eae4281f3a0f590439 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
# op (1Password CLI) completion -*- shell-script -*-
_op_commands()
{
"$@" --help 2>/dev/null |
awk '/^(Available |Sub)commands/{flag=1;next}/^ /&&flag{print $1}'
}
_op_command_options()
{
case $cur in
-*)
for i in "${!words[@]}"; do
[[ ${words[i]} == -* || $i -eq 0 ]] && unset "words[i]"
done
COMPREPLY=($(compgen -W \
'$(_parse_usage "$1" "${words[*]} --help") --help' -- "$cur"))
[[ ${COMPREPLY-} == *= ]] && compopt -o nospace
return 0
;;
esac
return 1
}
_op()
{
local cur prev words cword split
_init_completion -s || return
local command i
for ((i = 1; i < cword; i++)); do
case ${words[i]} in
--help | --version) return ;;
-*) ;;
*)
command=${words[i]}
break
;;
esac
done
if [[ ! -v command && $cur == -* ]]; then
COMPREPLY=($(compgen -W '$(_parse_usage "$1" --help)' -- "$cur"))
[[ ${COMPREPLY-} == *= ]] && compopt -o nospace
return
fi
[[ -v command ]] && _op_command_options "$1" && return
if [[ ! -v command || $command == "$prev" ]]; then
COMPREPLY=($(compgen -W '$(_op_commands "$1" ${command-})' -- "$cur"))
[[ ${COMPREPLY-} ]] && return
fi
# TODO specific command and subcommand completions
} &&
complete -F _op op
# ex: filetype=sh
|