Reputation: 3299
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?
Upvotes: 9
Views: 1629
Reputation: 5242
Each Leiningen project stores its REPL usage history in the .lein-repl-history
file. There's a global repl-history
file as well, located at ~/.lein
.
Upvotes: 15