Mike <[email protected]> writes: > I'm using that JLine thing for command history, but I would imagine > it's completely oblivious to Clojure forms so they get split > (potentially, depending on how I typed it) on multiple lines.
It's easy to get in a state where you're not sure how to reproduce it if you enter a lot of defns at the REPL that didn't come from a file. That's why editor integration is important. > Is SLIME (slime?) a better approach to interactive development? > (I.e., is it like a REPL in a buffer, and does it have hooks so you > know which definition of what is actually in place currently?) Yeah, SLIME can do that. For any var (unless it was entered at the REPL or via eval), you can jump to the file location that contains its definition. It's also easy to send a whole file to the REPL, which makes it easy to ensure that the current instance is consistent with what's on disk. -Phil --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/clojure?hl=en -~----------~----~----~----~------~----~------~--~---
