summaryrefslogtreecommitdiffstats
path: root/completions/asciidoc
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 01:03:19 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 01:03:19 +0000
commit6c09f2a45c5541e9c207d14fc7aa21a4a0066bde (patch)
tree0221189d367bf661f6f9493c4f17a03f0dd4b7d2 /completions/asciidoc
parentReleasing progress-linux version 1:2.11-8~progress7.99u1. (diff)
downloadbash-completion-6c09f2a45c5541e9c207d14fc7aa21a4a0066bde.tar.xz
bash-completion-6c09f2a45c5541e9c207d14fc7aa21a4a0066bde.zip
Merging upstream version 1:2.12.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'completions/asciidoc')
-rw-r--r--completions/asciidoc48
1 files changed, 28 insertions, 20 deletions
diff --git a/completions/asciidoc b/completions/asciidoc
index 1ea4abf..7e77857 100644
--- a/completions/asciidoc
+++ b/completions/asciidoc
@@ -1,52 +1,60 @@
# asciidoc(1) completion -*- shell-script -*-
+# @since 2.12
+_comp_xfunc_asciidoc_compgen_doctype()
+{
+ _comp_compgen -- -W 'article book manpage'
+}
+
+# @deprecated 2.12
_asciidoc_doctype()
{
- COMPREPLY+=($(compgen -W 'article book manpage' -- "$cur"))
+ _comp_compgen -ax asciidoc doctype
}
-_asciidoc()
+_comp_cmd_asciidoc()
{
- local cur prev words cword split
- _init_completion -s || return
+ local cur prev words cword was_split comp_args
+ _comp_initialize -s -- "$@" || return
+ local noargopts='!(-*|*[abfdo]*)'
+ # shellcheck disable=SC2254
case $prev in
- --attribute | -!(-*)a)
+ --attribute | -${noargopts}a)
return
;;
- --backend | -!(-*)b)
- COMPREPLY=($(compgen -W 'docbook html4 xhtml11' -- "$cur"))
+ --backend | -${noargopts}b)
+ _comp_compgen -- -W 'docbook html4 xhtml11'
return
;;
- --conf-file | -!(-*)f)
- _filedir conf
+ --conf-file | -${noargopts}f)
+ _comp_compgen_filedir conf
return
;;
- --doctype | -!(-*)d)
- _asciidoc_doctype
+ --doctype | -${noargopts}d)
+ _comp_xfunc_asciidoc_compgen_doctype
return
;;
- --help | -!(-*)h)
- COMPREPLY=($(compgen -W 'manpage syntax topics' -- "$cur"))
+ --help | -${noargopts}h)
+ _comp_compgen -- -W 'manpage syntax topics'
return
;;
- --out-file | -!(-*)o)
- _filedir
+ --out-file | -${noargopts}o)
+ _comp_compgen_filedir
return
;;
esac
- $split && return
+ [[ $was_split ]] && return
if [[ $cur == -* ]]; then
- COMPREPLY=($(compgen -W '$(_parse_help "$1" "--help manpage")' \
- -- "$cur"))
+ _comp_compgen_help -- --help manpage
[[ ${COMPREPLY-} == *= ]] && compopt -o nospace
return
fi
- _filedir
+ _comp_compgen_filedir
} &&
- complete -F _asciidoc asciidoc asciidoc.py
+ complete -F _comp_cmd_asciidoc asciidoc asciidoc.py
# ex: filetype=sh