summaryrefslogtreecommitdiff
path: root/completions/xzdec
diff options
context:
space:
mode:
Diffstat (limited to 'completions/xzdec')
-rw-r--r--completions/xzdec8
1 files changed, 3 insertions, 5 deletions
diff --git a/completions/xzdec b/completions/xzdec
index 5475a8e2..6b402eb3 100644
--- a/completions/xzdec
+++ b/completions/xzdec
@@ -6,12 +6,10 @@ _xzdec()
_init_completion -s || return
case $prev in
- -M|--memory)
- # argument required but no completions available
+ --memory|-!(-*)M)
return
;;
- -h|--help|-V|--version)
- # all other arguments are noop with these
+ --help|--version|-!(-*)[hV])
return
;;
esac
@@ -19,7 +17,7 @@ _xzdec()
$split && return
if [[ "$cur" == -* ]]; then
- COMPREPLY=( $( compgen -W '$( _parse_help "$1" )' -- "$cur" ) )
+ COMPREPLY=( $(compgen -W '$(_parse_help "$1")' -- "$cur") )
[[ $COMPREPLY == *= ]] && compopt -o nospace
return
fi