summaryrefslogtreecommitdiff
path: root/completions/automake
diff options
context:
space:
mode:
authorGabriel F. T. Gomes <gabriel@inconstante.net.br>2020-08-03 18:43:13 -0300
committerGabriel F. T. Gomes <gabriel@inconstante.net.br>2020-08-03 18:43:13 -0300
commit95623d39d6029ba78ec96ad5ea08e9ac12629b91 (patch)
treeea0fe36eb5e6f40e0a1f765d44c4b0c0b2bfb089 /completions/automake
parent019f3cc463db63abc6460f97deb488deec43840b (diff)
downloadbash-completion-95623d39d6029ba78ec96ad5ea08e9ac12629b91.tar.gz
New upstream version 2.11upstream/2.11upstream
Diffstat (limited to 'completions/automake')
-rw-r--r--completions/automake18
1 files changed, 9 insertions, 9 deletions
diff --git a/completions/automake b/completions/automake
index ff3d4523..5fe5f4f8 100644
--- a/completions/automake
+++ b/completions/automake
@@ -6,13 +6,13 @@ _automake()
_init_completion -s || return
case "$prev" in
- --help|--version)
+ --help | --version)
return
;;
- --warnings|-W)
- local cats=( gnu obsolete override portability syntax unsupported )
- COMPREPLY=( $(compgen -W \
- '${cats[@]} ${cats[@]/#/no-} all none error' -- "$cur") )
+ --warnings | -W)
+ local cats=(gnu obsolete override portability syntax unsupported)
+ COMPREPLY=($(compgen -W \
+ '${cats[@]} ${cats[@]/#/no-} all none error' -- "$cur"))
return
;;
--libdir)
@@ -23,14 +23,14 @@ _automake()
$split && return
- if [[ "$cur" == -* ]]; then
- COMPREPLY=( $(compgen -W '$(_parse_help "$1")' -- "$cur") )
- [[ $COMPREPLY == *= ]] && compopt -o nospace
+ if [[ $cur == -* ]]; then
+ COMPREPLY=($(compgen -W '$(_parse_help "$1")' -- "$cur"))
+ [[ ${COMPREPLY-} == *= ]] && compopt -o nospace
return
fi
_filedir
} &&
-complete -F _automake automake automake-1.1{0..6}
+ complete -F _automake automake automake-1.1{0..6}
# ex: filetype=sh