toivoh
toivoh
https://github.com/toivoh/julia-debugger/commit/ec4d4b3e00b5610cd1c55850e3ad0531ce30fb4c also helped
It seems that global scoping behavior is a bit more complex than I thought. E g, in global scope ``` x = 0 let x = 1 end print(x, "...
I have made no explicit attempts to support IJulia, and I know there have been problems with the using the `readline` function in IJulia in the past, which the debugger...
Don't apologize; it's better that I know about the issues :) I've actually never tried `Debug` in IJulia, now I might. I will see if get some time to look...
I see, using a script fixed the context problem¸ but not the loop. `Debug` uses `readline()` for user input. Have you tried to call it in IJulia to see if...
It seems that `readline` was just made to work in IJulia. Would you mind to try again after `Pkg.update()`? (Or after `Pkg.checkout("IJulia")` if the first one makes no difference)
I will see if I will get some time to look into this.
`Debug.jl` uses `readline` from Julia base to read user input, so I'd expect that the issue is there. Can you try `readline` under tmux, if it's the same problem, report...
One reason that I haven't implemented this is because I'm a bit unclear on how it would work. Exceptions can occur as part of normal program execution; you can't be...
I'm hoping to be able to support Julia 0.5; so far it's been a modest amount of work to upgrade from one Julia version to the next. But it might...