This repository has been archived on 2021-04-14. You can view files and clone it, but cannot push or open issues/pull-requests.
bare-dotfiles/bin/kubectx.completion.bash

9 lines
213 B
Bash
Raw Normal View History

2020-05-27 11:24:10 -04:00
_kube_contexts()
2019-05-30 10:52:57 -04:00
{
local curr_arg;
curr_arg=${COMP_WORDS[COMP_CWORD]}
2020-05-27 11:24:10 -04:00
COMPREPLY=( $(compgen -W "- $(kubectl config get-contexts --output='name')" -- $curr_arg ) );
2019-05-30 10:52:57 -04:00
}
2020-05-27 11:24:10 -04:00
complete -F _kube_contexts kubectx kctx