Re: What is the minimal Emacs config for practical Clojure development?

2018-07-03 Thread Didier
There's also inf-clojure, which is pretty minimal. -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post.

Re: group rows on basis of value in a column in CSV with clojure

2018-07-03 Thread Philipp Neumann
Hi. This is a job for (group-by last ...) Regards Varun J.P schrieb am Di., 3. Juli 2018, 19:05: > My CSV file is something like the attached file which could have 'n' > number of line. I need to group by the values in the last column. > Current I believe the below code will return me a

group rows on basis of value in a column in CSV with clojure

2018-07-03 Thread Varun J.P
My CSV file is something like the attached file which could have 'n' number of line. I need to group by the values in the last column. Current I believe the below code will return me a vector of vector. (defn read-csv-file [path] (try (with-open [input-file (io/reader path)]

Re: What is the minimal Emacs config for practical Clojure development?

2018-07-03 Thread Austin Haas
Thanks for the replies. I only want a stable REPL, integrated with Emacs, and nothing else. Łukasz, why did you switch to Monroe? What do you prefer about it? -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to

Re: What is the minimal Emacs config for practical Clojure development?

2018-07-03 Thread Jérémie Grodziski
I like very much Spacemacs with the Clojure layer for its discoverability and "out of the box" configuration. Ok it's a kind of a package manager, but once I switch to Spacemacs I've never look back. The tutorial by

Re: What is the minimal Emacs config for practical Clojure development?

2018-07-03 Thread Daniel Compton
Not sure exactly how minimal you're looking for but I like Prelude . It's maintained by Bozhidar Batsov, who also maintains CIDER, so it works well for Clojure development. On Tue, Jul 3, 2018 at 5:42 PM Łukasz Korecki wrote: > Hi! > > I've recently switched