mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-12-19 02:02:32 +01:00
Emoji plugin - Fix wrong string comparison
This commit is contained in:
parent
192de6bcff
commit
0238301726
2 changed files with 10 additions and 1 deletions
|
|
@ -88,7 +88,7 @@ typeset -gAH emoji_mod
|
|||
}
|
||||
# Modifiers are included in both the main set and their separate map,
|
||||
# because they have a standalone representation as a color swatch.
|
||||
if ( $modifier_status == "modifier" ) {
|
||||
if ( $modifier_status eq "modifier" ) {
|
||||
$outfh->print("emoji_mod[$omz_name]=\$'$zsh_code'\n");
|
||||
}
|
||||
} else {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue