summaryrefslogtreecommitdiff
path: root/completions/kcov
diff options
context:
space:
mode:
authorIgor Murzov <e-mail@date.by>2011-11-20 23:42:20 +0300
committerIgor Murzov <e-mail@date.by>2011-11-20 23:46:06 +0300
commit2e859f1a6cfb7d5628108564b4020780ad112328 (patch)
tree5263e53019076596a20271fc0c73e05ead19e8bc /completions/kcov
parent2932491a2c1ec611194d55a9390b708a32403b35 (diff)
downloadbash-completion-2e859f1a6cfb7d5628108564b4020780ad112328.tar.gz
Cleanups: Be consistent, use $( foo ) instead of $(foo).
This partially reverts f0283e1c1b64202bb1adb9f44eac6fdfd80edece
Diffstat (limited to 'completions/kcov')
-rw-r--r--completions/kcov4
1 files changed, 2 insertions, 2 deletions
diff --git a/completions/kcov b/completions/kcov
index 690a2a32..21a8eba9 100644
--- a/completions/kcov
+++ b/completions/kcov
@@ -11,7 +11,7 @@ _kcov()
return
;;
--sort-type|-s)
- COMPREPLY=( $(compgen -W 'filename percentage' -- "$cur") )
+ COMPREPLY=( $( compgen -W 'filename percentage' -- "$cur" ) )
return
;;
--include-path|--exclude-path)
@@ -28,7 +28,7 @@ _kcov()
$split && return
if [[ "$cur" == -* ]]; then
- COMPREPLY=( $(compgen -W '$(_parse_help "$1" --help)' -- "$cur") )
+ COMPREPLY=( $( compgen -W '$( _parse_help "$1" --help )' -- "$cur" ) )
[[ $COMPREPLY == *= ]] && compopt -o nospace
return
fi