wirrbel
wirrbel

Reputation: 3299

How to extract Clojure REPL history

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

Answers (1)

deprecated
deprecated

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

Related Questions