Re: Clojure in Emacs Seemingly Impossible

2011-10-30 Thread mdave
On Sep 10, 9:48 pm, Kugathasan Abimaran k.abima...@gmail.com wrote: Follow these instructions, it will work..http://riddell.us/ClojureWithEmacsSlimeSwankOnUbuntu.html Sadly, the instructions break right where it says: Add the following: (defproject test-project 0.1.0 :description Test

Re: Clojure in Emacs Seemingly Impossible

2011-10-30 Thread Phil Hagelberg
On Sat, Oct 29, 2011 at 10:54 PM, mdave fresh...@gmail.com wrote: On Sep 10, 9:48 pm, Kugathasan Abimaran k.abima...@gmail.com wrote: Follow these instructions, it will work..http://riddell.us/ClojureWithEmacsSlimeSwankOnUbuntu.html Sadly, the instructions break right where it says: Those

Re: Clojure in Emacs Seemingly Impossible

2011-10-30 Thread Matthew Boston
Definitely take Phils advice and use the instructions on the github site. I just setup a fresh emacs install from scratch (using Phils starter-kit http://technomancy.us/153 and it works flawlessly; and I'm new to emacs this week). mdave - Your dependencies are way old, try this instead.

Re: Clojure in Emacs Seemingly Impossible

2011-10-30 Thread Bill Robertson
Which is exactly the problem with Clojure in Emacs. There are N sets of instructions out there, and N-1 of them are out of date. And even the Nth one is incomplete. Step 1: Install clojure-mode either from Marmalade or from git. What if you don't know how to do that? So you click through to the

Re: Clojure in Emacs Seemingly Impossible

2011-10-30 Thread Phil Hagelberg
On Sun, Oct 30, 2011 at 5:43 PM, Bill Robertson billrobertso...@gmail.com wrote: Which is exactly the problem with Clojure in Emacs. There are N sets of instructions out there, and N-1 of them are out of date.  And even the Nth one is incomplete. Step 1: Install clojure-mode either from

Re: Clojure in Emacs Seemingly Impossible

2011-10-30 Thread Bill Robertson
I've never seen that. Good stuff there. Yes, I agree that the wiki should refer to that page. Thanks! On Oct 30, 8:47 pm, Phil Hagelberg p...@hagelb.org wrote: On Sun, Oct 30, 2011 at 5:43 PM, Bill Robertson billrobertso...@gmail.com wrote: Which is exactly the problem with Clojure in

Re: Clojure in Emacs Seemingly Impossible

2011-09-12 Thread kjeldahl
My recollection of how cake did it was probably wrong. As for how I would like to have it, I would like to have all output from all threads appear in the emacs repl buffer, similar to how it behaves in console mode, and that is what I haven't figured out how to do or found any workaround for,

Re: Clojure in Emacs Seemingly Impossible

2011-09-12 Thread Harrison Maseko
+1 On Sep 11, 4:04 pm, David Nolen dnolen.li...@gmail.com wrote: As an avid Emacs user - don't bother. If you just want a no hassle environment that supports Clojure development use Clooj. Steps - 1) Download 2) Double-click https://github.com/arthuredelstein/clooj David On Sat, Sep

Re: Clojure in Emacs Seemingly Impossible

2011-09-11 Thread Michael Jaaka
There should be an initiative to built own ide, look at Java history, it become popular when good ide with debugers, docs, highlighting and refactoring appeared. Clojure should have such ide, my vote right now is for clooj, since this is the only one ide written in supported language itself. Just

Re: Clojure in Emacs Seemingly Impossible

2011-09-11 Thread Sam Aaron
Hi Curran, I made this video for hacking Overtone with Emacs: http://vimeo.com/25190186 However, Overtone can just be viewed as an example project - it's really just a description of how to get a working Clojure/Emacs setup. Sam --- http://sam.aaron.name On 10 Sep 2011, at 18:29, Curran

Re: Clojure in Emacs Seemingly Impossible

2011-09-11 Thread David Nolen
As an avid Emacs user - don't bother. If you just want a no hassle environment that supports Clojure development use Clooj. Steps - 1) Download 2) Double-click https://github.com/arthuredelstein/clooj David On Sat, Sep 10, 2011 at 1:29 PM, Curran curran.kelle...@gmail.com wrote: Greetings,

Re: Clojure in Emacs Seemingly Impossible

2011-09-11 Thread Vincent
+1 -- 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. To unsubscribe from this group, send email to

Re: Clojure in Emacs Seemingly Impossible

2011-09-11 Thread Phil Hagelberg
I don't know why an error message doesn't show, but the swank clojure readme explains a fallback method (lein swank + M-x slime-connect) that you could try. -Phil -- You received this message because you are subscribed to the Google Groups Clojure group. To post to this group, send email to

Re: Clojure in Emacs Seemingly Impossible

2011-09-11 Thread kjeldahl
I use Emacs for virtually everything, but have found that Emacs +Clojure is less than idea when working with multiple threads (like hosting and running a Jetty server). I believe this is mostly related to how Java and Emacs+Slime handles input/output redirection. I went crazy trying to figure out

Re: Clojure in Emacs Seemingly Impossible

2011-09-11 Thread Sam Aaron
On 11 Sep 2011, at 16:37, kjeldahl wrote: I use Emacs for virtually everything, but have found that Emacs +Clojure is less than idea when working with multiple threads (like hosting and running a Jetty server). I believe this is mostly related to how Java and Emacs+Slime handles input/output

Re: Clojure in Emacs Seemingly Impossible

2011-09-11 Thread kjeldahl
Yes, I had better success with cake (when I used it). But with the lein setup, I believe most of it goes into a swank buffer of some sort, which also contain a lot of other (non-related) output, and exactly where in that buffer it also ends up seems a bit undeterministic. But again, just my

Re: Clojure in Emacs Seemingly Impossible

2011-09-11 Thread Phil Hagelberg
On Sun, Sep 11, 2011 at 9:09 AM, kjeldahl mariusauto-googlegro...@kjeldahl.net wrote: with the lein setup, I believe most of it goes into a swank buffer of some sort, which also contain a lot of other (non-related) output, and exactly where in that buffer it also ends up seems a bit

Re: Clojure in Emacs Seemingly Impossible

2011-09-11 Thread kjeldahl
Have you looked at the *swank* buffer? Maybe your's is looking differently than mine, but there's lots of stuff that I did not but there, and which I would not have there. My issues with this is related to running servers and catching debug output from it while it is running (yeah, I really

Re: Clojure in Emacs Seemingly Impossible

2011-09-11 Thread Sam Aaron
On 11 Sep 2011, at 22:42, kjeldahl wrote: I'm no expert, but if I had to choose between getting all output in a file, or some output in the repl buffer and some in *swank*, I would prefer the former (which is what I believe cake actually does). Used from within Emacs, cake places all output

Re: Clojure in Emacs Seemingly Impossible

2011-09-11 Thread Phil Hagelberg
On Sun, Sep 11, 2011 at 2:42 PM, kjeldahl mariusauto-googlegro...@kjeldahl.net wrote: Have you looked at the *swank* buffer? Maybe your's is looking differently than mine, but there's lots of stuff that I did not but there, and which I would not have there. Everything in there is output from

Re: Clojure in Emacs Seemingly Impossible

2011-09-11 Thread Daniel Pittman
On Sat, Sep 10, 2011 at 10:29, Curran curran.kelle...@gmail.com wrote: I would greatly appreciate any guidance on where to find a working and complete set of instructions for how to set up Emacs with swank- clojure. I am in Ubuntu. I have followed exactly every step of the instructions on

Re: Clojure in Emacs Seemingly Impossible

2011-09-11 Thread Sean Toner
Hi Curran, I'm in the process of learning Clojure and emacs as well and have run into a bit of difficulty as well, though I have a slightly different problem. I grabbed the 23.3 version of emacs from their ftp site and did NOT use the emacs starter kit. I discovered that the version of

Re: Clojure in Emacs Seemingly Impossible

2011-09-11 Thread Curran
Greetings, Wow, thank you all so much for the insightful responses to my inquiry! I really appreciate the supportive community. I developed a small web app in Clooj over the weekend and was very impressed by it! A very cool idea to write the IDE for the language, in the language, with the

Re: Clojure in Emacs Seemingly Impossible

2011-09-11 Thread finbeu
Also, if I can't get Emacs going, would anyone suggest an alternative development tool? (I know there are lots, but I don't know which to try first). I use IntelliJ IDEA with La Clojure and Leiningen plugin. I usually create a skeleton project with leiningen on the command line, then

Clojure in Emacs Seemingly Impossible

2011-09-10 Thread Curran
Greetings, I would greatly appreciate any guidance on where to find a working and complete set of instructions for how to set up Emacs with swank- clojure. I am in Ubuntu. I have followed exactly every step of the instructions on this page

Re: Clojure in Emacs Seemingly Impossible

2011-09-10 Thread Brian Mosley
This was quite helpful for me. http://technomancy.us/149 On Sat, Sep 10, 2011 at 1:29 PM, Curran curran.kelle...@gmail.com wrote: Greetings, I would greatly appreciate any guidance on where to find a working and complete set of instructions for how to set up Emacs with swank- clojure. I am

Re: Clojure in Emacs Seemingly Impossible

2011-09-10 Thread Kugathasan Abimaran
Follow these instructions, it will work.. http://riddell.us/ClojureWithEmacsSlimeSwankOnUbuntu.html On 11 September 2011 10:15, Brian Mosley brian.d.mos...@gmail.com wrote: This was quite helpful for me. http://technomancy.us/149 On Sat, Sep 10, 2011 at 1:29 PM, Curran