-
-
Notifications
You must be signed in to change notification settings - Fork 415
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
inconsistent treatment of emoji completions #297
Comments
The message that is being sent to IPython (via
which only has a single match. So, I suspect that something funky is happening on the IPython side here. @Carreau, @minrk? |
🐔 |
This might be a failure in the adaptation from the old v4 completion messages to v5. |
@minrk, where in the IPython codebase is this? I just ran into more weirdness today for |
Sorry for dropping this one. The koala completion is coming from the CodeMirror context hints. The adaptation is doing nothing wrong as far as I can tell. CodeMirror is seeing What was happening with |
@minrk, I don't remember exactly; I was doing something like @malmaud, can the CodeMirror mode be fixed? |
I'll take a look. |
JuliaLang/julia#10709 (@jakebolewski ) added emoji tab completions to the Julia REPL, e.g.
\:koala:
tab-completes to🐨
. Since IJulia uses the same tab-completion functions, it gets the same completions, but something weird happens when you type\:koala:<TAB>
:Note that it oddly thinks that there are two completions, not one. Not sure where this is coming from. It doesn't happen in the REPL, and
Base.REPLCompletions.completions("\\:koala:", length("\\:koala:"))
returns only a single completion.The text was updated successfully, but these errors were encountered: