Fork me on GitHub
#cursive
<
2016-09-18
>
cfleming00:09:03

@henryw374 I’ll try to reproduce that, thanks.

cfleming00:09:41

@hueyp Yes, it’s basically just https://github.com/brandonbloom/fipp, modified to work better within Cursive

cfleming00:09:39

@shooodooken That’s because the REPL tries to use the VM normally, and the VM is totally suspended when you’re at a breakpoint. I’d like to make that work using the evaluate expression functionality from the debugger, but I haven’t done that yet.

hueyp00:09:04

@cfleming perfect, thanks 🙂

denik20:09:47

@cfleming I saw a something cool in emacs recently. It enabled you to evaluate an expression and if a var is used inside it that is defined in another scope it would move up the scopes and eval at the right level. I found this incredibly valuable for individual binding in a let statement. Is this coming to cursive?

cfleming22:09:06

@denik That’s a cool idea. When you say a var used inside it, do you mean a local binding like something from a let?