mirror of
https://github.com/ahmetb/kubectx.git
synced 2025-06-22 13:41:11 +00:00
This allows linking as "kctx" and "kns" to prevent overlap with kubectl Tab completion when user hits `ku<Tab>`. Fixes #3. Also fixed variables KUBECTX and PREV leaking to zsh shell once the _kubectx function is invoked. Signed-off-by: Ahmet Alp Balkan <ahmetb@google.com>
9 lines
213 B
Bash
9 lines
213 B
Bash
_kube_contexts()
|
|
{
|
|
local curr_arg;
|
|
curr_arg=${COMP_WORDS[COMP_CWORD]}
|
|
COMPREPLY=( $(compgen -W "- $(kubectl config get-contexts --output='name')" -- $curr_arg ) );
|
|
}
|
|
|
|
complete -F _kube_contexts kubectx kctx
|