diff options
Diffstat (limited to 'bash-completion/scriptlive')
| -rw-r--r-- | bash-completion/scriptlive | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/bash-completion/scriptlive b/bash-completion/scriptlive index 56a296f5b5..69f0a3633d 100644 --- a/bash-completion/scriptlive +++ b/bash-completion/scriptlive @@ -14,13 +14,19 @@ _scriptlive_module() COMPREPLY=( $(compgen -W "digit" -- $cur) ) return 0 ;; + '-E'|'--echo') + COMPREPLY=( $(compgen -W "auto always never" -- $cur) ) + return 0 + ;; '-h'|'--help'|'-V'|'--version') return 0 ;; esac case $cur in -*) - OPTS="--timing + OPTS=" + --echo + --timing --log-in --log-io --log-timing |
