summaryrefslogtreecommitdiff
path: root/completions/a2x
diff options
context:
space:
mode:
Diffstat (limited to 'completions/a2x')
-rw-r--r--completions/a2x14
1 files changed, 7 insertions, 7 deletions
diff --git a/completions/a2x b/completions/a2x
index cf9f9516..b59c7861 100644
--- a/completions/a2x
+++ b/completions/a2x
@@ -6,15 +6,15 @@ _a2x()
_init_completion -s || return
case $prev in
- --attribute|--asciidoc-opts|--dblatex-opts|--fop-opts|--help|\
- --version|--xsltproc-opts|-!(-*)[ah])
+ --attribute | --asciidoc-opts | --dblatex-opts | --fop-opts | --help | \
+ --version | --xsltproc-opts | -!(-*)[ah])
return
;;
- --destination-dir|--icons-dir|-!(-*)D)
+ --destination-dir | --icons-dir | -!(-*)D)
_filedir -d
return
;;
- --doctype|-!(-*)d)
+ --doctype | -!(-*)d)
_xfunc asciidoc _asciidoc_doctype
return
;;
@@ -27,13 +27,13 @@ _a2x()
$split && return
if [[ $cur == -* ]]; then
- COMPREPLY=( $(compgen -W '$(_parse_help "$1" --help)' -- "$cur") )
- [[ $COMPREPLY == *= ]] && compopt -o nospace
+ COMPREPLY=($(compgen -W '$(_parse_help "$1" --help)' -- "$cur"))
+ [[ ${COMPREPLY-} == *= ]] && compopt -o nospace
return
fi
_filedir
} &&
-complete -F _a2x a2x
+ complete -F _a2x a2x
# ex: filetype=sh