diff options
Diffstat (limited to 'bash-completion/script')
-rw-r--r-- | bash-completion/script | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bash-completion/script b/bash-completion/script index 48f50c3e..c02f1be9 100644 --- a/bash-completion/script +++ b/bash-completion/script @@ -10,6 +10,9 @@ _script_module() COMPREPLY=( $(compgen -c -- $cur) ) return 0 ;; + '-h'|'--help'|'-V'|'--version') + return 0 + ;; esac case $cur in '=') |