summaryrefslogtreecommitdiff
path: root/completions/ccache
diff options
context:
space:
mode:
Diffstat (limited to 'completions/ccache')
-rw-r--r--completions/ccache18
1 files changed, 9 insertions, 9 deletions
diff --git a/completions/ccache b/completions/ccache
index 7dbec9fe..80c39de0 100644
--- a/completions/ccache
+++ b/completions/ccache
@@ -6,7 +6,7 @@ _ccache()
_init_completion -s || return
local i
- for (( i=1; i <= COMP_CWORD; i++ )); do
+ for ((i = 1; i <= COMP_CWORD; i++)); do
if [[ ${COMP_WORDS[i]} != -* ]]; then
_command_offset $i
return
@@ -15,14 +15,14 @@ _ccache()
done
case $prev in
- --help|--version|--max-files|--max-size|-!(-*)[hVFM])
+ --help | --version | --max-files | --max-size | -!(-*)[hVFM])
return
;;
- --set-config|-!(-*)o)
+ --set-config | -!(-*)o)
if [[ $cur != *=* ]]; then
- COMPREPLY=( $(compgen -S = -W "$($1 -p 2>/dev/null | \
- awk '$3 = "=" { print $2 }')" -- "$cur") )
- [[ $COMPREPLY == *= ]] && compopt -o nospace
+ COMPREPLY=($(compgen -S = -W "$($1 -p 2>/dev/null |
+ awk '$3 = "=" { print $2 }')" -- "$cur"))
+ [[ ${COMPREPLY-} == *= ]] && compopt -o nospace
fi
return
;;
@@ -30,9 +30,9 @@ _ccache()
$split && return
- COMPREPLY=( $(compgen -W '$(_parse_help "$1")' -- "$cur") )
- [[ $COMPREPLY == *= ]] && compopt -o nospace
+ COMPREPLY=($(compgen -W '$(_parse_help "$1")' -- "$cur"))
+ [[ ${COMPREPLY-} == *= ]] && compopt -o nospace
} &&
-complete -F _ccache ccache
+ complete -F _ccache ccache
# ex: filetype=sh