diff options
author | Alexis Hildebrandt <afh@surryhill.net> | 2018-04-15 15:16:44 +0200 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2018-04-15 15:16:44 +0200 |
commit | 88d21fea6c0d90e58f221f9a2320ba7b73dac97a (patch) | |
tree | 4e479491806c952f9126c665ada2c9d42c011f21 /plugins/emotty/emotty.plugin.zsh | |
parent | 8e1cfc91541a2c9daef9e0790323ecaf369229c2 (diff) | |
download | zsh-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.zsh | 3 |
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 |