Re: Two clojure with emacs questions

2012-12-20 Thread Jonathon McKitrick
On Wednesday, December 19, 2012 9:12:45 AM UTC-5, Jonathon McKitrick wrote: > > 1. Can emacs with swank dynamically update Noir code running locally, or > do I need to save the code and then 'lein run' to see the new result? > > 2. When trying (in-ns ...) and a few other commands from emacs, n

Re: Two clojure with emacs questions

2012-12-20 Thread Michael Bradley, Jr.
On Wednesday, December 19, 2012 10:52:26 AM UTC-6, Jonathon McKitrick wrote: > Hi Tassilo > > > 1. Can emacs with swank dynamically update Noir code running locally, > >> > or do I need to save the code and then 'lein run' to see the new >> > result? >> >> Without ever having used Noir, I woul

Re: Two clojure with emacs questions

2012-12-20 Thread Jonathon McKitrick
Problem solved. I had a hook that was running paredit mode in the repl, and that was interfering with some of the form evaluations. On Thursday, December 20, 2012 1:40:01 PM UTC-5, Jonathon McKitrick wrote: > > 2) Have you tried swank ? > > Isn't swank-clojure deprecated? >>> >> > -- You re

Re: Two clojure with emacs questions

2012-12-20 Thread Jonathon McKitrick
2) Have you tried swank ? Isn't swank-clojure deprecated? >> > -- 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 yo

Re: Two clojure with emacs questions

2012-12-20 Thread Jonathon McKitrick
On Thursday, December 20, 2012 1:05:45 PM UTC-5, Maris wrote: > > > 1) You simply need to save you'r code to see changes in browser (unless > it is AOT compiled code). > Alternatively (even better) you can start server from REPL and change you > code on the fly. > I'll try that. > > 2) H

Re: Two clojure with emacs questions

2012-12-20 Thread Maris
1) You simply need to save you'r code to see changes in browser (unless it is AOT compiled code). Alternatively (even better) you can start server from REPL and change you code on the fly. 2) Have you tried swank ? On Wednesday, December 19, 2012 2:12:45 PM UTC, Jonathon McKitrick wrote: >

Re: Two clojure with emacs questions

2012-12-20 Thread Jonathon McKitrick
Yep, that's the one I'm using. I just confirmed, and I still have the bug. On Thursday, December 20, 2012 2:43:57 AM UTC-5, Tassilo Horn wrote: > > Jonathon McKitrick > writes: > > >> Yes, then you are using nrepl and not SLIME/Swank. I use that, too, > >> and I haven't encountered hangs with

Re: Two clojure with emacs questions

2012-12-19 Thread Tassilo Horn
Jonathon McKitrick writes: >> Yes, then you are using nrepl and not SLIME/Swank. I use that, too, >> and I haven't encountered hangs with (in-ns ...) forms yet. If you >> have your project accessible somewhere, I'm happy to try to reproduce >> the issue. > > I have a bit more information. > > T

Re: Two clojure with emacs questions

2012-12-19 Thread Jonathon McKitrick
Yes, then you are using nrepl and not SLIME/Swank. I use that, too, and > I haven't encountered hangs with (in-ns ...) forms yet. If you have > your project accessible somewhere, I'm happy to try to reproduce the > issue. > I have a bit more information. The interface hangs running in Carb

Re: Two clojure with emacs questions

2012-12-19 Thread Jack Moffitt
On Wed, Dec 19, 2012 at 9:52 AM, Jonathon McKitrick wrote: > I was wondering if I could make changes in emacs, C-c C-k, and refresh the > web page to see the results. You'll probably want to use ring-serve for this. To some degree lein-ring also offers this functionality as it uses wrap-reload mi

Re: Two clojure with emacs questions

2012-12-19 Thread Tassilo Horn
Jonathon McKitrick writes: >> 1. Can emacs with swank dynamically update Noir code running locally, >> > or do I need to save the code and then 'lein run' to see the new >> > result? >> >> Without ever having used Noir, I would assume you can hack on the >> living instance at the REPL. > > I

Re: Two clojure with emacs questions

2012-12-19 Thread Jonathon McKitrick
Hi Tassilo > 1. Can emacs with swank dynamically update Noir code running locally, > > or do I need to save the code and then 'lein run' to see the new > > result? > > Without ever having used Noir, I would assume you can hack on the living > instance at the REPL. > I was wondering if I co

Re: Two clojure with emacs questions

2012-12-19 Thread Tassilo Horn
Jonathon McKitrick writes: Hi Jonathon, > 1. Can emacs with swank dynamically update Noir code running locally, > or do I need to save the code and then 'lein run' to see the new > result? Without ever having used Noir, I would assume you can hack on the living instance at the REPL. > 2. Whe