X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=shell-completion%2Fbash%2Fsystemd-analyze;h=6afcd963c33f3cc9598410df8b8c1445a4e646f1;hp=5bd676866b425eebe6a7ef41bc72089ea101c8af;hb=21ac6ff143cc8bebfbd1818af28e8c6f82cd5265;hpb=fe05567c31cb88593a09ce5d8961d8b20627feb1 diff --git a/shell-completion/bash/systemd-analyze b/shell-completion/bash/systemd-analyze index 5bd676866..6afcd963c 100644 --- a/shell-completion/bash/systemd-analyze +++ b/shell-completion/bash/systemd-analyze @@ -31,7 +31,7 @@ _systemd_analyze() { local OPTS='--help --version --system --user --from-pattern --to-pattern --order --require' local -A VERBS=( - [NO_OPTION]='time blame plot' + [STANDALONE]='time blame plot dump' [CRITICAL_CHAIN]='critical-chain' [DOT]='dot' [LOG_LEVEL]='set-log-level' @@ -39,7 +39,7 @@ _systemd_analyze() { _init_completion || return - for ((i=0; $i <= $COMP_CWORD; i++)); do + for ((i=0; i < COMP_CWORD; i++)); do if __contains_word "${COMP_WORDS[i]}" ${VERBS[*]} && ! __contains_word "${COMP_WORDS[i-1]}" ${OPTS[ARG]}; then verb=${COMP_WORDS[i]} @@ -55,7 +55,7 @@ _systemd_analyze() { if [[ -z $verb ]]; then comps=${VERBS[*]} - elif __contains_word "$verb" ${VERBS[NO_OPTION]}; then + elif __contains_word "$verb" ${VERBS[STANDALONE]}; then if [[ $cur = -* ]]; then comps='--help --version --system --user' fi