chiark / gitweb /
bash-completion: fix completion of complete verbs
[elogind.git] / shell-completion / bash / systemctl
index 232d2d65f4ca3d9976b462ebd0f40214058215fa..dc7ef6689820054018d28c0e3159584bb09f3547 100644 (file)
@@ -146,7 +146,7 @@ _systemctl () {
                   [TARGETS]='set-default'
         )
 
-        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]}