summaryrefslogtreecommitdiff
path: root/completions/slapt-src
diff options
context:
space:
mode:
Diffstat (limited to 'completions/slapt-src')
-rw-r--r--completions/slapt-src12
1 files changed, 6 insertions, 6 deletions
diff --git a/completions/slapt-src b/completions/slapt-src
index 2f65415f..64458bab 100644
--- a/completions/slapt-src
+++ b/completions/slapt-src
@@ -19,7 +19,7 @@ _slapt_src()
$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
[[ $COMPREPLY ]] && return
fi
@@ -54,12 +54,12 @@ _slapt_src()
if [[ "$cur" == *:* ]]; then
local name=${cur%:*}
local version=${cur##*:}
- COMPREPLY=( $( LC_ALL=C "$1" --config "$config" --search "^$name" 2> \
- /dev/null | LC_ALL=C command sed -ne \
- "/^$cur/{s/^$name:\([^ ]*\) .*$/\1/;p}" ) )
+ COMPREPLY=( $(LC_ALL=C "$1" --config "$config" --search "^$name" \
+ 2>/dev/null | LC_ALL=C command sed -ne \
+ "/^$cur/{s/^$name:\([^ ]*\) .*$/\1/;p}") )
else
- COMPREPLY=( $( LC_ALL=C "$1" --config "$config" --search "^$cur" 2> \
- /dev/null | LC_ALL=C command sed -ne "/^$cur/{s/ .*$//;p}" ) )
+ COMPREPLY=( $(LC_ALL=C "$1" --config "$config" --search "^$cur" \
+ 2>/dev/null | LC_ALL=C command sed -ne "/^$cur/{s/ .*$//;p}") )
fi
} &&
complete -F _slapt_src slapt-src