diff options
author | Marc Cornellà <marc.cornella@live.com> | 2020-04-05 17:14:48 +0200 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2020-04-05 17:14:48 +0200 |
commit | dbd16000a55f57e3f1a1fdc9557eacd5577a4afe (patch) | |
tree | 04f1bc758d360fe4aea0583ab0f0ed4e94fb30d0 /plugins/themes | |
parent | 6ad6fea52a7c59c12f95db974514891d2c111075 (diff) | |
download | zsh-dbd16000a55f57e3f1a1fdc9557eacd5577a4afe.tar.gz zsh-dbd16000a55f57e3f1a1fdc9557eacd5577a4afe.tar.bz2 zsh-dbd16000a55f57e3f1a1fdc9557eacd5577a4afe.zip |
themes: fix minor syntax error
Diffstat (limited to 'plugins/themes')
-rw-r--r-- | plugins/themes/themes.plugin.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/themes/themes.plugin.zsh b/plugins/themes/themes.plugin.zsh index cda83f587..650856284 100644 --- a/plugins/themes/themes.plugin.zsh +++ b/plugins/themes/themes.plugin.zsh @@ -27,7 +27,7 @@ function lstheme { # Show themes inside $ZSH_CUSTOM (in any subfolder) # Strip $ZSH_CUSTOM/themes/ and $ZSH_CUSTOM/ from the name, so that it matches # the value that should be written in $ZSH_THEME to load the theme. - print -l "$ZSH_CUSTOM"/**/*.zsh-theme(.N:r:gs:"$ZSH_CUSTOM"/themes/:::gs:"$ZSH_CUSTOM"/:::) \ + print -l "$ZSH_CUSTOM"/**/*.zsh-theme(.N:r:gs:"$ZSH_CUSTOM"/themes/:::gs:"$ZSH_CUSTOM"/:::) # Show themes inside $ZSH, stripping the head of the path. print -l "$ZSH"/themes/*.zsh-theme(.N:t:r) |