We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3ae706 commit ae6da15Copy full SHA for ae6da15
completions/lspci
@@ -18,12 +18,12 @@ _comp_cmd_lspci()
18
return
19
;;
20
-*A)
21
- COMPREPLY+=($(compgen -W '$("$1" -A help | command grep -vF :)' \
+ COMPREPLY=($(compgen -W '$("$1" -A help | command grep -vF :)' \
22
-- "$cur"))
23
24
25
-*H)
26
- _comp_compgen -a -- -W "1 2"
+ _comp_compgen -- -W "1 2"
27
28
29
-*F)
completions/reportbug
@@ -30,7 +30,7 @@ _comp_cmd_reportbug()
30
31
32
--tag | --ui | --interface | --type | --bts | --severity | --mode | -${noargopts}[TutBS])
33
- COMPREPLY+=($(
+ COMPREPLY=($(
34
compgen -W \
35
'$("$1" "$prev" help 2>&1 | sed -ne "/^[[:space:]]/p")' \
36
-- "$cur"
0 commit comments