Sebastian Pfitzner
Sebastian Pfitzner
You should be able to Ctrl+C rows until this is fixed.
VS Code provides a UI component for tree views and the Julia extension has a table viewer, so we'd only need a little bit of plumbing for everything to work...
Pretty sure this only happens if your Manifest.toml was modified after the sysimg was created (check mtimes to make sure that's it). `touch`ing the sysimg should fix the error, if...
So can you figure out why the manifest is modified after the sysimg is created?
This isn't particularly surprising since we take over all interrupt handling and send an `InterruptException` to the user code directly (which is unsafe in itself). I don't think there's a...
Yeah, true. The flag is task/thread-local, which should make things a bit easier, but getting to it is a) non-trivial and b) a very undocumented thing, so yes, I'd love...
Interrupts are tricky because we want them to work on Windows, which doesn't support signals. So the way this works for the REPL/inline evaluation is as follows: We have two...
The issue with this is that higher order functions are very widely used and will break the expected debugging behaviour (of breakpoints working). I can definitely see why specifying a...
Btw, did you consider enabling compiled mode? Or do you actually use breakpoints in your code and no higher order functions from packages at all?
Breakpoints don't work in compiled code, no matter whether that's because you toggled compiled mode or because you set a function as compiled.