diff --git a/kubectx b/kubectx index 9eba150..f181552 100755 --- a/kubectx +++ b/kubectx @@ -60,7 +60,7 @@ list_contexts() { for c in $(get_contexts); do if [[ -t 1 && "${c}" = "${cur}" ]]; then - echo "* ${darkbg}${yellow}${c}${normal}" + echo "${darkbg}${yellow}${c}${normal}" else echo "${c}" fi diff --git a/kubens b/kubens index e3e3383..cbf26a7 100755 --- a/kubens +++ b/kubens @@ -114,7 +114,7 @@ list_namespaces() { ns_list=$(get_namespaces) for c in $ns_list; do if [[ -t 1 && "${c}" = "${cur}" ]]; then - echo "* ${darkbg}${yellow}${c}${normal}" + echo "${darkbg}${yellow}${c}${normal}" else echo "${c}" fi