I have written some code within the plain console REPL of Clojure (lein repl). Now I would like to extract the history in order to get the code that I have written in there. Can I do this somehow?
- 1I take it a simple copy paste doesn't do it? You can use the up and down arrows to retrieve past/future commands. A good practice: try to eval code from a file buffer to the REPL and use the REPL only to test the code or make slight changes.Michiel Borkent– Michiel Borkent2013-05-22 06:40:28 +00:00Commented May 22, 2013 at 6:40
Add a comment |