From 22cf7159ec09722421ffe355e852410823d7f49d Mon Sep 17 00:00:00 2001 From: Isaac Cook Date: Mon, 10 Feb 2020 13:31:55 -0600 Subject: [PATCH] kube-ps1: add example for common pitfall (#8318) I ran into this issue, looks like maybe a few other people did as well. https://github.com/jonmosco/kube-ps1/issues/28#issuecomment-359761463 A simple clarification seems helpful. --- plugins/kube-ps1/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/kube-ps1/README.md b/plugins/kube-ps1/README.md index 82c0a77e6..fdc1a94e8 100644 --- a/plugins/kube-ps1/README.md +++ b/plugins/kube-ps1/README.md @@ -55,6 +55,8 @@ plugins=( # After the "source Oh My Zsh" line PROMPT=$PROMPT'$(kube_ps1) ' +# Or in double quotes, don't forget to escape +PROMPT=$PROMPT"\$(kube_ps1) " ``` Note: The `PROMPT` example above was tested with the theme `robbyrussell`.