about summary refs log tree commit diff
path: root/Functions
diff options
context:
space:
mode:
authorMikael Magnusson <mikachu@gmail.com>2022-02-23 19:45:43 +0100
committerMikael Magnusson <mikachu@gmail.com>2022-03-08 19:37:21 +0100
commit28410bd5bc71fda6343b13c2b6abad06bd2eaaee (patch)
tree891d21c22d6aeef87327cf5554283de1453c7f34 /Functions
parentee1d622042015d9eb56bfd616163e82ffb7e5b4f (diff)
downloadzsh-28410bd5bc71fda6343b13c2b6abad06bd2eaaee.tar.gz
zsh-28410bd5bc71fda6343b13c2b6abad06bd2eaaee.tar.xz
zsh-28410bd5bc71fda6343b13c2b6abad06bd2eaaee.zip
promptinit: only exclude current theme from preview if no arguments are given
Diffstat (limited to 'Functions')
-rw-r--r--Functions/Prompts/promptinit5
1 files changed, 2 insertions, 3 deletions
diff --git a/Functions/Prompts/promptinit b/Functions/Prompts/promptinit
index 20503d78b..0c06699e8 100644
--- a/Functions/Prompts/promptinit
+++ b/Functions/Prompts/promptinit
@@ -73,7 +73,7 @@ set_prompt() {
 Options:
     -c              Show currently selected theme and parameters
     -l              List currently available prompt themes
-    -p [<themes>]   Preview given themes (defaults to all)
+    -p [<themes>]   Preview given themes (defaults to all except current theme)
     -h [<theme>]    Display help (for given theme)
     -s <theme>      Set and save theme
     <theme>         Switch to new theme immediately (changes not saved)
@@ -120,10 +120,9 @@ Use prompt -h <theme> for help on specific themes.'
        print $prompt_themes
        return
        ;;
-    p) preview=( $prompt_themes )
+    p) preview=( ${prompt_themes:#$prompt_theme} )
        (( $#* > 1 )) && preview=( "$@[2,-1]" )
        for theme in $preview; do
-         [[ "$theme" == "$prompt_theme[*]" ]] && continue
          prompt_preview_safely "$=theme"
        done
        print -P "%b%f%k"