-
Notifications
You must be signed in to change notification settings - Fork 18
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
Loading OhMyREPL before Rebugger #30
Comments
In my setup, putting OhMyREPL in the last place also fixes the problem, but at the cost of broken bracket completion. @MrUrq do you experience the same problem? |
Yes, both @MrUrq and myself (we are officemates) experience that OhMyREPL breaks as you describe. We haven't found any solution apart from living with it. |
Presumably the solution would be to have a general framework for intercepting the REPL, for example by inserting callbacks. That would involve some changes to the REPL stdlib, presumably. |
OhMyREPL is basically a hack and overwrites loads of REPL methods because there's no other way to implement things like that, so yes, an actually extensible REPL interface would be great to have. |
Loading OhMyREPL.jl before Rebugger in the startup.jl file hinders Rebuggers keybindings from working. This happens on Julia 1.0 (tested on two different systems).
Example startup.jl file:
This problem does not appear to happen if I start a clean Julia session and load the packages from the REPL one by one.
Putting OhMyREPL last in the sequence of the startup.jl file fixes the problem.
The text was updated successfully, but these errors were encountered: