1
0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2026-01-19 00:37:35 +08:00

Compare commits

..

No commits in common. "bebd9ea59f6f5ed629b659dc1f230ac71b1fd1a8" and "b5e6392f2140b7aa49c248aa6c232a6922d3311b" have entirely different histories.

2 changed files with 2 additions and 1 deletions

View File

@ -36,6 +36,7 @@ fi
alias bcubc='brew upgrade --cask && brew cleanup'
alias bcubo='brew update && brew outdated --cask'
alias bcubc='brew upgrade --cask && brew cleanup'
alias brewp='brew pin'
alias brewsp='brew list --pinned'
alias bubc='brew upgrade && brew cleanup'

View File

@ -9,5 +9,5 @@ function kubectx_prompt_info() {
# use value in associative array if it exists
# otherwise fall back to the context name
echo "${kubectx_mapping[\"$current_ctx\"]:-${current_ctx:gs/%/%%}}"
echo "${kubectx_mapping[$current_ctx]:-${current_ctx:gs/%/%%}}"
}