Questions tagged [nrepl]

nREPL is a networked Clojure REPL: it provides a server and client, along with some common APIs of use to IDEs and other tools that may need to evaluate Clojure code in remote environments. Several Clojure development tools connect to nREPL servers, such as Leiningen, Counterclockwise, and nrepl.el.

nREPL is a networked Clojure REPL: it provides a server and client, along with some common APIs of use to IDEs and other tools that may need to evaluate Clojure code in remote environments. Several Clojure development tools connect to nREPL servers, such as Leiningen, Counterclockwise, and nrepl.el.

85 questions
0
votes
1 answer

Eval of form runs entire file unless I switch to namespace in repl

I am using this, and I think I have some odd behavior. I open a repl at the project root (foons), open a file (ex.clj) file with vim in the project, and then eval the following (both with <,>Eval and cpp inside the form) : (clojure.core/in-ns…
mpettis
  • 3,222
  • 4
  • 28
  • 35
0
votes
1 answer

Bootstrapping a Staging Clojure App via REPL incl. fetching dependenices

Deploying Clojure/Java apps is hard, so I had this idea yesterday I want to understand better. If I spin up a machine that has Clojure and boot-clj installed and run boot wait repl -s -H 0.0.0.0 on the machine (let's ignore auth for now), I should…
Petrus Theron
  • 27,855
  • 36
  • 153
  • 287
0
votes
1 answer

Nrepl middleware not loading correctly with maven project

I am trying to use CIDER's debugger in my project which is setup in maven (can't switch to Leiningen). I've configured clojure-maven-plugin as stated in their github README: com.theoryinpractise
Setzer22
  • 1,589
  • 2
  • 13
  • 29
0
votes
2 answers

Halting a program at a debug point?

I am using emacs for clojure development. So after using: C-u M-x cider-jack-in (in my test file). Followed by lein repl followed by M-x cider-connect I get a strange, partially working repl at the root of my project where I have to provide the…
Abraham P
  • 15,029
  • 13
  • 58
  • 126
0
votes
1 answer

clojure nrepl in emacs saving state - always evaluating entire file on nrepl-jack-in

I'm using emacs live to set up my clojure environment. 1) What command would cause nrepl to try and evaluate the entire file upon jack-in? 2) Is there some place where session state is saved? For some unknown reason emacs is now trying to evaluate…
MattR
  • 55
  • 3
0
votes
1 answer

emacs, nrepl, M-. (nrepl-jump): Searching for program: permission denied, unzip

UPD: My OS is Win7 64 bit I'm getting the following error when trying to jump to symbol's definition with M-. Searching for program: permission denied, unzip Google doesn't help me much with that issue. Can somebody point me to the right…
Pavel Murygin
  • 2,242
  • 2
  • 18
  • 26
0
votes
1 answer

How to manipulate multiple buffers using nrepl?

I am trying to twist some code from slime to nrepl. The code is obvious when working with slime. It sends clojure code to evaluate, get the result string and process it as you like. I changed my code so that it can interact with nrepl. That is:…
yeh
  • 1,496
  • 14
  • 35
0
votes
3 answers

Why filter stuck in nrepl?

Why last expression stuck forever(i guess it will never stop) in nrepl. I have to Ctrl+c Ctrl+c to stop it.
yeh
  • 1,496
  • 14
  • 35
0
votes
0 answers

Key-combination on Emacs + nRepl + ClojureMode

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-,. Other shortcuts, such as C-c C-k work just…
Tudor Vintilescu
  • 1,450
  • 2
  • 16
  • 28
0
votes
1 answer

How do I get clojure:nrepl to work with clojure-maven-plugin?

if I type: mvn -f clojure-maven-nrepl.pom.xml clojure:nrepl I get: [INFO] Scanning for projects... [INFO] ------------------------------------------------------------------------ [ERROR] BUILD FAILURE [INFO]…
John Lawrence Aspden
  • 17,124
  • 11
  • 67
  • 110
1 2 3 4 5
6