diff --git a/.config/bash/kubectl_completion.sh b/.config/bash/kubectl_completion.sh index a243dd8..f462d9c 100644 --- a/.config/bash/kubectl_completion.sh +++ b/.config/bash/kubectl_completion.sh @@ -35,7 +35,7 @@ __kubectl_get_completion_results() { local requestComp lastParam lastChar args # Prepare the command to request completions for the program. - # Calling ${words[0]} instead of directly kubectl allows to handle aliases + # Calling ${words[0]} instead of directly kubectl allows handling aliases args=("${words[@]:1}") requestComp="${words[0]} __complete ${args[*]}"