-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
REPL integrated readline #10667
Comments
|
Isn't this referring to tab completion etc in user input? |
I don't know. |
I don't understand the issue here, could someone clarify what is requested here? |
julia> readline()
Once upp^A
"Once upp\x01" That |
The "correct" way to do this seems to me to be to implement a new REPL mode (like Debugger and Pkg does) and not call |
I feel that this has been discussed before, but I couldn't find an issue. Anyway, now that #6270 has had the chance to simmer for quite a bit, it would be nice if also user code could make use of the readline functionality provided by the new REPL.
I'm not sure if this should be special cased on calling
readline(STDIN)
(or justreadline()
), or if there should be a new function (with more options?). Also, not sure how this should work with eg IJulia.This would e.g. be really useful to improve the debugging experience with Debug.jl. I'm sure there's others who would benefit as well.
The text was updated successfully, but these errors were encountered: