You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Open fuzzy find window
$ emo
> exclamation
3/1643
> excla # Enter to get emoji
❗
Random select
$ emo -rand
😁
Fuzzy find / Random select by subcategory
$ emo -listsub
alphanum
animal-amphibian
animal-bird
...
warning
writing
zodiac
$ emo -findsub
> warning_
16/1817
> warning_no_bicycles # Enter to get emoji
🚳
$ emo -randsub animal-bird
🦜
Copying emoji
To copy emoji to your clipboard, please use commands like pbcopy (on Mac) or xsel (on Linux).
# Copy emoji of star to clipboard.
$ emo star | pbcopy (or `xsel -ib` on Linux)
Using as library
Installation
go get github.com/syumai/emo
Usage
// EmojiData is a list of emojiemoji:=emo.EmojiData[0]
// print data of emoji// { Name, Unified, NonQualified, Docomo, Au, Softbank, Google...fmt.Println(emoji)
// get specified emoji by short namestarEmoji:=emo.Get("star")
// print emoji as string: ⭐fmt.Println(starEmoji.String())