1
vote
1answer
112 views

Clojure Emacs Connecting to Remote REPL

When using plain repl with tramp I can navigate to a remote directory and exetute inferior-lisp and it launches a inferior-lisp process on the remote. With nrepl I can start the repl on the remote ...
3
votes
1answer
126 views

What is the proper way to shutdown nrepl?

How do you gracefully shutdown nrepl in emacs? swank-clojure was shutdown with a comma and then sayoonara, which does not work with nrepl.
1
vote
2answers
50 views

How to prevent JFrame/EXIT_ON_CLOSE from killing the nrepl server?

EDIT Using DISPOSE_ON_CLOSE is not what I'm after, because them I've got the "inverse" problem: the REPL stays alive when I close the JFrame (which is good) but then it also stays alive when launced ...
1
vote
3answers
73 views

emacs command-t behavior

I'm a total emacs newbie. I watched a video which shows ido in emacs working similar to command-t in textmate: (video is: http://vimeo.com/1013263) The issue is I don't get this behavior when I'm ...
3
votes
1answer
156 views

How can I clear and reload my nrepl session in emacs?

I am working with emacs and nrepl. How can I do the following: Exit nrepl (currently I just kill the buffer) Reload everything I was working with in nrepl. The problem I'm trying to solve by doing ...
4
votes
0answers
128 views

how can I make nrepl-ritz-jack-in work remotely over tramp / emacs

What I want: I have a clojure program on a remote site, let's call it mccarthy. What I want to do is connect to a nrepl-ritz from my laptop, preferably using nrepl-ritz-jack-in. The jack in works ...
2
votes
1answer
105 views

Clojure REPL not launching at Windows command prompt

I have placed the clojure-1.4.0.jar path (C:\clojure-1.4.0\clojure-1.4.0.jar) in my CLASSPATH environment variable. Now when I try to launch the REPL from the command line with the following code: ...
2
votes
1answer
241 views

IDE for Clojure - Counterclockwise(Eclipse) vs Emacs. What (if any) features Counterclockwise is missing comparing to Emacs?

I want to know what are limitations of Counterclockwise plugin for Eclipse comparing to Emacs. What Lisp (and Clojure) magic will not be available from Eclipse? -- UPDATE -- I know Emacs will have ...
1
vote
1answer
170 views

How to update Clojure Leiningen Emacs tool chain on Mac OS

I have a working Clojure-1.4.0 / emacs24 / leiningen-2.0 tool chain working on Mac OSX 10.8. I got it going very quickly by following the instructions at the following URLs: ...
2
votes
1answer
75 views

Is there a way to do a history search in nrepl?

You know how when you hit the up arrow in bash it will fill in the last command you typed in? Is there any way to do this in nrepl? So far I've been doing a reverse search (C-r), typing the first few ...
0
votes
2answers
126 views

Can't get emacs + ritz-nrepl working on a Macintosh system

I'm having trouble getting ritz-nrepl to work. Here's what (among other things) I've done: Started with a clean system (on Mac OS X, Mountain Lion)--no emacs.app, no ~/.emacs.d directory Followed ...
0
votes
0answers
58 views

Key-combination on Emacs + nRepl + ClojureMode [duplicate]

I'm new to the Emacs + Lein + nRepl + ClojureMode combination and seem to be at a loss as to why I cannot run the C-c C-, key combination in a clojure program buffer. It simply does not take the C-,. ...
1
vote
1answer
187 views

Clojure, emacs, ritz-swank: `M-x slime-connect` gives error message

I spent the afternoon trying to get the ritz-swank package to work with emacs and Clojure. (Googling the error message and much more gave no useful leads.) I hope somebody can give me some pointers ...
3
votes
1answer
121 views

Clojure editing code while running split into different files

I've recently been trying to test OpenGL in Clojure with the lwjgl library. I started off with this code: (ns test.core (:import [org.lwjgl.opengl Display DisplayMode GL11])) (defn init-window ...
2
votes
2answers
98 views

How can I make emacs keyboard macros work properly when pasting the results of clojure evaluation?

There's a phenomenally useful feature of emacs lisp where you can evaluate the result of an expression and paste the result directly into a buffer. Say I want to check addition works. Then I type: ...
0
votes
1answer
66 views

Customizing repl/nrepl error messages

There's an error I keep doing in Clojure once in a while and I don't do it often enough yet to know immediately what I forgot but I still do it often enough that it gets really annoying. Basically ...
4
votes
2answers
150 views

How do I update Clojure dependencies when working with nrepl.el?

As I understand it, when I do nrepl-jack-in a REPL is loaded along with all the dependencies defined in project.clj. If I then update project.clj to add a new dependency, do I need to kill the server ...
6
votes
3answers
440 views

which repl to use inside emacs for clojure

I am tring to setup an environment for editing clojure in emacs. I'm relatively new to emacs (only 1 yr) and totally new to clojure (2 weeks). I've found lots of tutorial online about how to setup ...
1
vote
2answers
89 views

Adding a new functionality to TAB for Clojure mode

I know that TAB wants to be smart in Emacs. However it is not smart enough for my taste. And because it is "smart", it seems to be complicated to extend. I'd like TAB in Clojure mode to act exactly ...
1
vote
1answer
128 views

Folding parts of an s-expression - advice requested

I'm using clojure-mode and clojure.test/with-test, which looks like this: (with-test (def... some expression defining a var) ;; comment for a test (is (= 0 (- 1 1))) (is ...)) Where the ...
3
votes
2answers
200 views

How to delete extra parens in Paredit mode?

I'm using Paredit in Emacs to edit Lisp code. How do i delete an extra pair of parens that i accidentally inserted? Paredit does not allow this without extra commands ((square 5)) into ...
0
votes
6answers
143 views

Using Paredit to wrap existing expression

I'm using Emacs in Paredit mode for Lisp code. I'm trying to wrap a function call in println: (square 5) (println (square 5)) What ends up happening in paredit is this: (square 5) (println) ...
6
votes
2answers
452 views

Unable to evaluate form in nrepl + emacs

I have installed the packages nrepl, clojure-mode and starter-kit-lisp. I am able to start the nrepl by opening my .clj file and then M-x nrepl-jack-in. However when I evaluate any form in my .clj ...
0
votes
2answers
443 views

Installing ritz-nrepl for emacs

I'm trying to setup ritz-nrepl to use emacs as a clojure debugger. I have lein 2. I got emacs 24.2.1 (fresh install) and clojure-mode. Then I did what the readme says here ...
2
votes
1answer
168 views

Can't launch `lein` REPL in Emacs

In Emacs, when using clojure-mode, I ought to be able to launch a REPL with C-c C-z. Whenever I try, though, I get the error: Searching for program: no such file or directory: lein I have lein ...
5
votes
1answer
159 views

Visualize s-expressions in real-time

I want to write Lisp/Scheme/Clojure code like this (map inc (range 0 5)) And have it visualized somewhat like this map -- inc \\ range -- 0 \ -- 5 I want to ...
0
votes
1answer
88 views

localrepo throws “Could not locate … ” error when I try to use it

I'm using lein 1.7.1 on a ubuntu machine. I've added localrepo by including :dev-dependencies [[lein-localrepo "0.3"]] to my project.clj file. lein deps runs fine but using localrepo like in lein ...
3
votes
1answer
225 views

Setting up Emacs with swank-js and clojure

I would like to install slime-js but I already have Clojure installed and it is my understanding that Clojure's current Emacs integration will not work with the version of SLIME that swank-js uses. ...
4
votes
4answers
816 views

Mac OSX, Emacs 24.2 and nrepl.el not working

I'm using nrepl.el, Emacs 24.2. My S.O version is OS X Lion 10.7.5. Running the command [M-x] nrepl after start a REPL session through lein (:~ $ lein repl) i am able to connect to it but if i try to ...
5
votes
2answers
586 views

Emacs Live - Namespace not found

I'm using Emacs Live because it seemed nice and saves me a lot of configuration work. Now it worked fine for a few days, but today something apparently broke. Specifically, auto completion broke (I ...
6
votes
1answer
677 views

nrepl.el: how to eval clojure buffer form to nrepl buffer instead of echo area?

I'm using nrepl.el from git (0.1.6-preview, via el-get recipe), and I would like clojure buffer evals: C-x C-e, C-M-x, C-c C-r for form, top-level form and region respectively, to send themselves to ...
10
votes
1answer
633 views

nrepl.el and leiningen 2 default namespace?

Getting an Emacs / Clojure environment up and running, I'm now running into behavior that I'm not sure is normal. In particular, when I start an nREPL and compile (C-c C-k) my buffer, I get dropped ...
13
votes
1answer
3k views

How to get Emacs, nrepl.el and Leiningen to play along?

I was actually quite happy with using vim + lein repl, but since so many people keep saying that Emacs is the way to go when it comes to Lisps, I've decided to give it a try. The problem is now ...
3
votes
1answer
198 views

Interactions between browser Repl, browser, http server in clojurescript

I have been playing around with clojurescriptone - neat project - to try and understand how clojurescript works. It is not clear to me how the three components, browser, browser repl and the http ...
3
votes
1answer
607 views

how to hot reload code while using ritz-nrepl

I am using emacs, clojure-mode, and ritz-nrepl. I have set up my code to reload on change, while using swank-clojure using the following - How to Reload files upon save when using ...
6
votes
2answers
309 views

How can I refactor clojure source code?

Doing 4clojure exercices, one goal is to provide a correct answer. And an optional goal is to provide the shortest solution as possible (spaces are not counted in), a.k.a code golf. You can then ...
1
vote
1answer
98 views

Can I run clj file directly on emacs?

I'm using clojure-box on windows. Because the Emacs is totally new thing for me, I got some trouble with using it. Can I save the real code(without user>> and result, etc) from Emacs? it seems C-x ...
3
votes
2answers
197 views

Can't get Slime and Swank working with Clojure in emacs in os x

Just trying to get a very basic install of slime and clojure working, but swank keeps failing when I run clojure-jack-in I first got lein, then put the following in my .emacs (for version 24.1): ...
6
votes
3answers
143 views

Can I background a running thread in the Slime (Swank Emacs)

I often find my self starting some long running process from the REPL and then wish I could carry on using the REPL for other tasks while it was running. Can I use slime to background the current ...
7
votes
2answers
598 views

How do I intelligently re-indent Clojure in Emacs?

I'm new to Clojure and new to Emacs. Is there an Emacs short-cut to intelligently re-indent the whole file? if not, is there at least a way to indent selected regions left or right? I feel like I'm ...
3
votes
1answer
120 views

Open windows and load specific buffers in emacs lisp

I'm working on my .emacs configuration for clojure development. What I want to happen is whenever I open a file called "project.clj" if there is no open buffer called "swank", split the window first ...
1
vote
4answers
139 views

reloading a ns in repl

Lets say I have a code file that has the ns - (ns abc.a). Now I start my repl and am in the ns- (use-ns 'abc.a). Now if I change any code in the file, how do I get to reload the ns in the repl? ...
3
votes
1answer
191 views

Unit testing Clojure on the fly in a separate frame

I was watching an amazing "Emacs rocks" video and I noticed that the developers were using two windows side by side where one window is Emacs and the other window is used to (nearly) constantly run ...
0
votes
1answer
196 views

clojure-jack-in error

I installed clojure-mode and slime using the emacs starter kit and I get this error when I do clojure-jack-in - Symbols value as variable is void: slime-clj What could be causing this? Thanks!
1
vote
1answer
237 views

How to start inferior-lisp and swank both together

I am doing both clojure and clojurescript development. I usually start clojure by the clojure-jack-in function, and clojurescript repl by the following funciton - (defun clojurescript-repl () ...
3
votes
2answers
170 views

Clojure / Emacs jack in : Requiring a namespace on load

When I start a lein repl for a Clojure project, the namespace clojure.repl is imported. If alternatively I use Slime in Emacs with clojure-jack-in, I get a repl without this. (Leiningen 2) How can I ...
6
votes
7answers
563 views

Are Lisp source code files themselves lists?

No matter the Lisp dialect, it looks like every source code file containing Lisp functions isn't itself a list (the first time I was "surprised" by this was when working on my Emacs .el files). I've ...
3
votes
2answers
158 views

Selecting a clojure form in emacs

I am using emacs for clojure development with the swank-clojure package. I would like to copy the form under my pointer, how do I do that? ex if my mouse pointer is currently in the inner form, it ...
2
votes
2answers
318 views

pretty printing and expansion

EDIT I'm not just asking about 'indenting' every single line of code but about "pretty printing" and/or a wider definition of "indenting", where lines would be grouped/split depending on what they ...
2
votes
1answer
100 views

How to do the equivalent of eval-last-sexp on Clojure code

EDIT For a reason which I haven't fully understood yet my C-x C-e was bound to eval-last-sexp and instead of (?) slime-eval-last-expression. Now I can C-x C-e from the .clj buffer and I can at least ...

1 2 3