aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoman Perepelitsa <roman.perepelitsa@gmail.com>2019-07-07 12:00:44 +0300
committerGitHub <noreply@github.com>2019-07-07 12:00:44 +0300
commit921f9e664ac726661a2e9fecc82ea6243c37ae36 (patch)
treed450efad1721641ad0eed3c7d901274a6cf59bb8
parentbb4e9d4a5a0f284f2141dbc94e596ee3df33e49b (diff)
parenta74603d30f2e1fbbffc53346382ac280725a06c6 (diff)
Merge pull request #106 from venyii/kubecontext-cluster-func
Fix a typo in docs.
-rw-r--r--EXTENDED_CONFIGURATION.md13
-rw-r--r--README.md2
-rwxr-xr-xinternal/p10k.zsh3
3 files changed, 17 insertions, 1 deletions
diff --git a/EXTENDED_CONFIGURATION.md b/EXTENDED_CONFIGURATION.md
index 048f3bf2..ced06cd2 100644
--- a/EXTENDED_CONFIGURATION.md
+++ b/EXTENDED_CONFIGURATION.md
@@ -43,6 +43,19 @@ another
You can pick up a fix for the latter from
[a fork of zsh](https://github.com/romkatv/zsh/tree/gentle-reset-prompt).
+`POWERLEVEL9K_KUBECONTEXT_CONTEXT_FUNCTION (FUNCTION) [default=""]`
+
+Add your own function to modify the k8s context name, e.g. remove superfluous information:
+
+```bash
+# Input: gke_project-name-1337_europe-west1-c_production/ns
+# Output: production
+function k8s_context_short() {
+ echo "$1" | sed -E 's/.*-[a-z]_(.*)\/.*/\1/'
+}
+POWERLEVEL9K_KUBECONTEXT_CONTEXT_FUNCTION="k8s_context_short"
+```
+
When using gitstatus, there is an extra state called `LOADING` that is used by `vcs` prompt
segment when it's waiting for git status in the background. You can define styling for this
state the same way as for the other states -- `CLEAN`, `UNTRACKED` and `MODIFIED`. You can
diff --git a/README.md b/README.md
index 2a6c98b3..15968e5d 100644
--- a/README.md
+++ b/README.md
@@ -205,7 +205,7 @@ budget for other plugins you might install.
Powerlevel10k is released under the
[MIT license](https://github.com/romkatv/powerlevel10k/blob/master/LICENSE). Contributions are
-convered by the same license.
+covered by the same license.
## FAQ
diff --git a/internal/p10k.zsh b/internal/p10k.zsh
index c339461a..96a28a46 100755
--- a/internal/p10k.zsh
+++ b/internal/p10k.zsh
@@ -2142,6 +2142,9 @@ prompt_kubecontext() {
fi
done
fi
+ if [[ -n $POWERLEVEL9K_KUBECONTEXT_CONTEXT_FUNCTION ]]; then
+ ctx=$($POWERLEVEL9K_KUBECONTEXT_CONTEXT_FUNCTION $ctx)
+ fi
_p9k_cache_set "$ctx" "$suf"
fi