Pietro Peterlongo
Pietro Peterlongo
add special functionality when typing `nimoji search` (or maybe just `nimoji` with out args?) in the cli. it should implement a minimal TUI that allows a search by keyword (using...
Putting a note here since I just learned about this Python feature that you can refer to Unicode code points by their name: https://twitter.com/treyhunner/status/1547988892275470338?s=21&t=-h5LhNUHxeDzv_Fjb1qcww
_why do you need a logo if you have emojis?_ candidate for nimoji: ๐ฅ (since it is my first nim package) in general I would pick an
```nim type Keyword = distinct string # e.g "grinning" Emoji = distinct string # e.g "๐" ``` I think this could be very useful, in particular to add a `match`...
refs: * https://github.com/muan/unicode-emoji-json * https://github.com/muan/emojilib/pull/178 * https://github.com/github/gemoji (hadley/emo uses both gemoji and emojilib) should I add a Emoji object with more info than simple dict: name -> emoji?
would be nice to have a small js that adds this to a textarea. see https://github.blog/2012-10-12-emoji-autocomplete/
turn emoji in their respective keywords, see https://github.com/carpedm20/emoji#example
(optional) provide emoji keyword as alt text (as inline html)
```nim import nimoji echo static ":wave:".emojize ``` output: ``` Error: cannot evaluate at compile time: emojiCodemap ```