summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVille Skyttä <ville.skytta@iki.fi>2011-11-09 18:06:59 +0200
committerVille Skyttä <ville.skytta@iki.fi>2011-11-09 18:06:59 +0200
commite4ff8d98a33fbcad5aa5c86a426169099dd728cc (patch)
tree908bc3c88db6571530fd12be50f2967d4067626d
parentbb36bfd019db7e723577603e13815a6ba73c5d4f (diff)
downloadbash-completion-e4ff8d98a33fbcad5aa5c86a426169099dd728cc.tar.gz
chkconfig: Wrap long lines.
-rw-r--r--completions/chkconfig6
1 files changed, 4 insertions, 2 deletions
diff --git a/completions/chkconfig b/completions/chkconfig
index 31a575e3..d7935c61 100644
--- a/completions/chkconfig
+++ b/completions/chkconfig
@@ -19,10 +19,12 @@ _chkconfig()
$split && return 0
if [[ "$cur" == -* ]]; then
- COMPREPLY=( $( compgen -W '--list --add --del --override --level' -- "$cur" ) )
+ COMPREPLY=( $( compgen -W '--list --add --del --override --level' \
+ -- "$cur" ) )
else
if [[ $cword -eq 2 || $cword -eq 4 ]]; then
- COMPREPLY=( $( compgen -W 'on off reset resetpriorities' -- "$cur" ) )
+ COMPREPLY=( $( compgen -W 'on off reset resetpriorities' \
+ -- "$cur" ) )
else
_services
fi