summaryrefslogtreecommitdiff
path: root/completions/function
diff options
context:
space:
mode:
authorGabriel F. T. Gomes <gabriel@inconstante.net.br>2019-08-07 09:17:13 -0300
committerGabriel F. T. Gomes <gabriel@inconstante.net.br>2019-08-07 09:17:13 -0300
commit5732da2af736c40cf693354485446ab4867ecb4d (patch)
tree76d76cdfa16ca62d20fb109da13895ec64fff110 /completions/function
parent9cd22d1df8f0f5b554858471c86faa9f37b8fed4 (diff)
downloadbash-completion-5732da2af736c40cf693354485446ab4867ecb4d.tar.gz
New upstream version 2.9upstream/2.9
Diffstat (limited to 'completions/function')
-rw-r--r--completions/function12
1 files changed, 6 insertions, 6 deletions
diff --git a/completions/function b/completions/function
index fbcf10d2..a97b5255 100644
--- a/completions/function
+++ b/completions/function
@@ -8,28 +8,28 @@ _function()
if [[ $1 == @(declare|typeset) ]]; then
if [[ $cur == [-+]* ]]; then
local opts
- opts=( $( _parse_usage "$1" ) )
+ opts=( $(_parse_usage "$1") )
# Most options also have a '+' form. We'll exclude the ones that don't with compgen.
opts+=( ${opts[*]/-/+} )
- COMPREPLY=( $( compgen -W "${opts[*]}" -X '+[Ffgp]' -- "$cur" ) )
+ COMPREPLY=( $(compgen -W "${opts[*]}" -X '+[Ffgp]' -- "$cur") )
else
local i=1
while [[ ${words[i]} == [-+]* ]]; do
if [[ ${words[i]} == -*[fF]* ]]; then
- COMPREPLY=( $( compgen -A function -- "$cur" ) )
+ COMPREPLY=( $(compgen -A function -- "$cur") )
return
fi
((i++))
done
if [[ $i -gt 1 ]]; then
# There was at least one option and it was not one that limited operations to functions
- COMPREPLY=( $( compgen -A variable -- "$cur" ) )
+ COMPREPLY=( $(compgen -A variable -- "$cur") )
fi
fi
elif [[ $cword -eq 1 ]]; then
- COMPREPLY=( $( compgen -A function -- "$cur" ) )
+ COMPREPLY=( $(compgen -A function -- "$cur") )
else
- COMPREPLY=( "() $( type -- ${words[1]} | command sed -e 1,2d )" )
+ COMPREPLY=( "() $(type -- ${words[1]} | command sed -e 1,2d)" )
fi
} &&
complete -F _function function declare typeset