Re: Counterclockwise nREPL multiple commands

2011-12-09 Thread jlhouchin
On Dec 9, 1:27 pm, Chas Emerick wrote: > On Dec 6, 2011, at 11:27 PM, jlhouchin wrote: > > > As I work through the Programming Clojure book, I play with the code I > > enter into the REPL. > > I just want to say that I am infinitely enjoying using the REPL in > >

Re: Ending or closing malformed line in REPL

2011-12-09 Thread jlhouchin
On 12/9/2011 1:34 PM, Chas Emerick wrote: > > On Dec 6, 2011, at 11:31 AM, jlhouchin wrote: > >> This biggest issue I see in this context, is that the REPL is tied to >> the editor. Yes, I can detach the REPL, but it is still a part of the >> editor. I can't have

Counterclockwise nREPL multiple commands

2011-12-06 Thread jlhouchin
Hello, As I work through the Programming Clojure book, I play with the code I enter into the REPL. I just want to say that I am infinitely enjoying using the REPL in Counterclockwise. It does make multi-line code so much nicer. I entered this. (defn whole-numbers [] (iterate inc 1)) (take 10 (for

Re: Ending or closing malformed line in REPL

2011-12-06 Thread jlhouchin
On Dec 6, 10:04 am, Stuart Sierra wrote: > The built-in Clojure REPL is bare-bones to minimize external dependencies. > Maybe some day we can have alternate distributions with more full-featured > REPLs. For now, it's easier to use a development environment: Emacs + > inferior-lisp or SLIME, Count

Re: Ending or closing malformed line in REPL

2011-12-06 Thread jlhouchin
On 12/6/2011 12:23 AM, Laurent PETIT wrote: > 2011/12/6 jlhouchin: >> On 12/5/2011 7:19 PM, Stephen Compall wrote: >>> On Mon, 2011-12-05 at 09:51 -0800, jlhouchin wrote: >>>> When I entered the closing " and then closing >>>> paren. I was fine. >

Re: Ending or closing malformed line in REPL

2011-12-05 Thread jlhouchin
On 12/5/2011 7:19 PM, Stephen Compall wrote: > On Mon, 2011-12-05 at 09:51 -0800, jlhouchin wrote: >> When I entered the closing " and then closing >> paren. I was fine. > > You may also try backspace; unusually for a REPL, that works. I tried that. But as I was on a

Re: Ending or closing malformed line in REPL

2011-12-05 Thread jlhouchin
instance it isn't a closing paren but a part of the string which is waiting to be closed. When I entered the closing " and then closing paren. I was fine. I should have provided more context in the original post and you could have seen my error. Again, my apologies. Jimmie On Dec 5, 1

Ending or closing malformed line in REPL

2011-12-05 Thread jlhouchin
Hello, While I am going through the Programming Clojure 2nd edition book, I am entering the code into a REPL. Sometimes when entering the code I enter a typo and hit enter and cannot get the REPL to close that malformed line. It often happens with an errant closing ] or ). Frequently this occurs