diff options
| author | Frederik Ring <frederik.ring@gmail.com> | 2024-02-14 12:14:08 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-14 12:14:08 +0100 |
| commit | 872b5cd4086a5547dbf788dda4e96ab3868cf59b (patch) | |
| tree | 72c969335c584b23b6fdfc9305a7716e233761ab /plugins/kubectx | |
| parent | f9bbf6047b35ff00ea398857d2a09ffea5cd8bfa (diff) | |
| download | zsh-872b5cd4086a5547dbf788dda4e96ab3868cf59b.tar.gz zsh-872b5cd4086a5547dbf788dda4e96ab3868cf59b.tar.bz2 zsh-872b5cd4086a5547dbf788dda4e96ab3868cf59b.zip | |
docs(kubectx): add quoting to array keys (#12216)
Diffstat (limited to 'plugins/kubectx')
| -rw-r--r-- | plugins/kubectx/README.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/kubectx/README.md b/plugins/kubectx/README.md index 98f1cf032..d924e745c 100644 --- a/plugins/kubectx/README.md +++ b/plugins/kubectx/README.md @@ -17,9 +17,9 @@ One can rename default context name for better readability. _Example_. Add to **.zshrc**: ``` -kubectx_mapping[minikube]="mini" -kubectx_mapping[context_name_from_kubeconfig]="$emoji[wolf_face]" -kubectx_mapping[production_cluster]="%{$fg[yellow]%}prod!%{$reset_color%}" +kubectx_mapping["minikube"]="mini" +kubectx_mapping["context_name_from_kubeconfig"]="$emoji[wolf_face]" +kubectx_mapping["production_cluster"]="%{$fg[yellow]%}prod!%{$reset_color%}" ```  |
