On Sat, Jun 5, 2010 at 4:48 PM, Dave Pawson <[email protected]> wrote: > On many interactive shells I use up-arrow to repeat > the last command. > > Is that possible with the clojure repl, Linux?
You can use rlwrap or jline with the repl invocation command. $ rlwrap java -cp /usr/share/java/clojure.jar clojure.main or $ java -cp /usr/share/java/clojure.jar:/usr/share/java/jline.jar jline.ConsoleRunner clojure.main -- Ramakrishnan -- 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
