Revert "Use * to indicate current context & current namespace"

This reverts commit dad48e5397.
This commit is contained in:
Prabhu Jayakumar 2018-05-30 00:32:23 +05:30
parent dad48e5397
commit c23c2a9e29
2 changed files with 2 additions and 2 deletions

View File

@ -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

2
kubens
View File

@ -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