Romain François

Results 75 comments of Romain François

Cool thanks for logging it here. I've had a quick look and I only found how to match the codes with pictures, but I need to :bowtie: this to their...

Perfect. Should be easy to use one of those. Not sure if this goes in a list column in jis or in a separate simple named chr vector. The hesitation...

Good news from looking at the python link above, they use [this](https://github.com/carpedm20/emoji/blob/master/utils/get-codes-from-unicode-consortium.py) to transform some of the names from the unicode names (which we already have in `pull( emo::jis, name...

ah, it looks like it all goes down to this repo: https://github.com/github/gemoji and particularly [this file](https://github.com/github/gemoji/blob/master/db/emoji.json) which as a bonus also has information about the version of unicode when the...

We now have `emo::ji_alias` vector (which might replace `emo:::emoji_name` ) so : ``` > cat( emo::ji_alias["grin"] ) 😁 ``` I'll simplify `ji_glue` to use this

@LucyMcGowan For now I've put this in `ji_replace` but not 💍 with the name. ``` > ji_replace( ":ant: != :santa: " ) 🐜 != 🎅 ```

it probably should hint (did you mean ...) when it does not match

Makes sense for this to be ji_glue, btw it can't actually use glue i think as the begin and end are the same. I kind of want to keem what...

I did not know about `completeme` @jimhester did you see this though: https://github.com/rstudio/rstudio/pull/1462

The backtracking happens here IIUC: https://github.com/rstudio/rstudio/blob/a079f5e1a66267fddfc3dffd3ffb57da6a002e77/src/gwt/src/org/rstudio/studio/client/workbench/views/console/shell/assist/RCompletionManager.java#L2055 Changes to studio would still be needed for emoji completion in other contexts right ? comments, markdown text ...