We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6811198 commit 0068dd1Copy full SHA for 0068dd1
completions/arp
@@ -27,7 +27,9 @@ _arp()
27
esac
28
29
if [[ $cur == -* ]]; then
30
- COMPREPLY=($(compgen -W '$(_parse_help "$1")' -- "$cur"))
+ COMPREPLY=($(
31
+ compgen -W '$(_parse_help "$1" || _parse_usage "$1")' -- "$cur"
32
+ ))
33
return
34
fi
35
completions/vipw
@@ -15,7 +15,9 @@ _vipw()
15
;;
16
17
18
19
20
21
} &&
22
complete -F _vipw vipw vigr
23
0 commit comments