summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLE Manh Cuong <cuong.manhle.vn@gmail.com>2015-12-01 12:03:00 +0700
committerLE Manh Cuong <cuong.manhle.vn@gmail.com>2015-12-18 14:15:38 +0700
commit5e77e00ad522a5d6a84067d22015b85b0080a19f (patch)
tree1af7422e99b7e9a9a028ce029df48e524a3a4076
parent531c41cdfee9e3bbba16d0bf19ca973ad4bb4af5 (diff)
downloadzsh-5e77e00ad522a5d6a84067d22015b85b0080a19f.tar.gz
zsh-5e77e00ad522a5d6a84067d22015b85b0080a19f.tar.bz2
zsh-5e77e00ad522a5d6a84067d22015b85b0080a19f.zip
Some improvements
- Adding documentation - Note the effect empty array - Fix spelling - Using new test `[[...]]`
-rw-r--r--README.markdown8
-rw-r--r--oh-my-zsh.sh6
-rw-r--r--templates/zshrc.zsh-template3
3 files changed, 13 insertions, 4 deletions
diff --git a/README.markdown b/README.markdown
index 9d7210f77..0d3144dde 100644
--- a/README.markdown
+++ b/README.markdown
@@ -88,6 +88,14 @@ If you're feeling feisty, you can let the computer select one randomly for you e
ZSH_THEME="random" # (...please let it be pie... please be some pie..)
```
+And if you want to pick random theme from a list of your favorite themes:
+
+```shell
+ZSH_THEM_RANDOM_CANDIDATES=(
+ "robbyrussell"
+ "agnoster"
+)
+```
## Advanced Topics
diff --git a/oh-my-zsh.sh b/oh-my-zsh.sh
index 0324543d5..4517a2ba0 100644
--- a/oh-my-zsh.sh
+++ b/oh-my-zsh.sh
@@ -93,9 +93,9 @@ done
unset config_file
# Load the theme
-if [ "$ZSH_THEME" = "random" ]; then
- if [ "${(t)ZSH_THEME_RANDOM_CANDICATES}" = "array" ] && [ "${#ZSH_THEME_RANDOM_CANDICATES[@]}" -gt 0 ]; then
- themes=($ZSH/themes/${^ZSH_THEME_RANDOM_CANDICATES}.zsh-theme)
+if [[ "$ZSH_THEME" == "random" ]]; then
+ if [[ "${(t)ZSH_THEME_RANDOM_CANDIDATES}" = "array" ]] && [[ "${#ZSH_THEME_RANDOM_CANDIDATES[@]}" -gt 0 ]]; then
+ themes=($ZSH/themes/${^ZSH_THEME_RANDOM_CANDIDATES}.zsh-theme)
else
themes=($ZSH/themes/*zsh-theme)
fi
diff --git a/templates/zshrc.zsh-template b/templates/zshrc.zsh-template
index baedf0675..2f39308a9 100644
--- a/templates/zshrc.zsh-template
+++ b/templates/zshrc.zsh-template
@@ -11,7 +11,8 @@ ZSH_THEME="robbyrussell"
# Setting this variable when ZSH_THEME=random
# cause zsh load theme from this variable instead of
# looking in ~/.oh-my-zsh/themes/
-# ZSH_THEME_RANDOM_CANDICATES=()
+# An empty array have no effect
+# ZSH_THEME_RANDOM_CANDIDATES=( "robbyrussell" "agnoster" )
# Uncomment the following line to use case-sensitive completion.
# CASE_SENSITIVE="true"