summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--completions/chronyc6
1 files changed, 4 insertions, 2 deletions
diff --git a/completions/chronyc b/completions/chronyc
index 7a5f5f64..ddbbbb9b 100644
--- a/completions/chronyc
+++ b/completions/chronyc
@@ -28,7 +28,8 @@ _chronyc()
case $args in
0)
COMPREPLY=( $( compgen -W "$( $1 help 2>/dev/null | \
- awk '!/(^ |: *$)/ { sub("\\|", " ", $1); print $1 }' )" -- "$cur" ) )
+ awk '!/(^ |: *$)/ { sub("\\|", " ", $1); print $1 }' )" \
+ -- "$cur" ) )
;;
1)
case $prev in
@@ -52,7 +53,8 @@ _chronyc()
COMPREPLY=( $( compgen -W 'off stratum' -- "$cur" ) )
;;
manual)
- COMPREPLY=( $( compgen -W 'list on off reset delete' -- "$cur" ) )
+ COMPREPLY=( $( compgen -W 'list on off reset delete' \
+ -- "$cur" ) )
;;
sources|sourcestats)
COMPREPLY=( $( compgen -W '-v' -- "$cur" ) )