summaryrefslogtreecommitdiff
path: root/plugins/emotty/emotty.plugin.zsh
diff options
context:
space:
mode:
authorAlexis Hildebrandt <afh@surryhill.net>2018-04-15 15:16:44 +0200
committerMarc Cornellà <marc.cornella@live.com>2018-04-15 15:16:44 +0200
commit88d21fea6c0d90e58f221f9a2320ba7b73dac97a (patch)
tree4e479491806c952f9126c665ada2c9d42c011f21 /plugins/emotty/emotty.plugin.zsh
parent8e1cfc91541a2c9daef9e0790323ecaf369229c2 (diff)
downloadzsh-88d21fea6c0d90e58f221f9a2320ba7b73dac97a.tar.gz
zsh-88d21fea6c0d90e58f221f9a2320ba7b73dac97a.tar.bz2
zsh-88d21fea6c0d90e58f221f9a2320ba7b73dac97a.zip
Improve emotty plugin (#5999)
* The display_emotty function show the name of the displayed emotty set * Unless an emotty set was given show the emotty set configured in $emotty_set
Diffstat (limited to 'plugins/emotty/emotty.plugin.zsh')
-rw-r--r--plugins/emotty/emotty.plugin.zsh3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/emotty/emotty.plugin.zsh b/plugins/emotty/emotty.plugin.zsh
index b32dd1a4c..6a8bf6127 100644
--- a/plugins/emotty/emotty.plugin.zsh
+++ b/plugins/emotty/emotty.plugin.zsh
@@ -32,7 +32,8 @@ function emotty() {
}
function display_emotty() {
- local name=$1
+ local name=${1:-$emotty_set}
+ echo $name
for i in ${=_emotty_sets[$name]}; do
printf "${emoji[$i]}${emoji2[emoji_style]} "
done