All Questions
Tagged with read-eval-print-loop emacs
69 questions
0
votes
1
answer
111
views
Doom Emacs Clojure Google Authorization Code
I run doom emacs in windows 10, for clojure. Based on
Sparkfund google-apps-clj.credentials/get-auth-map
function, the
_ (println "Please visit the following url and input the code "...
1
vote
1
answer
1k
views
error in process sentinel: Could not start nREPL server: java.lang.NumberFormatException: Invalid number
I've looked at all of the similar questions on stack overflow. This one is different enough to warrant a separate question. Basically, I can't start a repl server because I get the error below. It's ...
3
votes
1
answer
401
views
Properly load-file for interactive Common Lisp development
I would like to know, what is the common approach to common-lisp interactive development in emacs (i use sly, but i think the slime instructions should be the same)
say i have this file:
(eval-when (:...
2
votes
1
answer
316
views
Printing long lines in scratch buffer
When evaluating a long list in the scratch buffer, eg. load-history with C-u 0C-j (to see the whole output), emacs essentially freezes up trying to deal with the long lines of output.
Is there a way ...
3
votes
1
answer
574
views
Racket-Mode: Can I evaluate a single form within a given namespace at the REPL?
I'm working at the Racket REPL via racket-mode in Emacs, writing code in multiple modules.
Is there a way to execute a single form from a module I'm not currently 'in', in the context of its own ...
3
votes
1
answer
85
views
Errors in Emacs starting Repl
I use Emacs for Clojure development. When I started Repl by cider-jack-in I got some error, but I can see only a few last lines in echo area. When I click on echo area It says that "Minibuffer window ...
3
votes
0
answers
152
views
Issue compiling Chicken files in Geiser/Emacs
I installed Geiser in Emacs. In a scheme buffer, if I run C-c C-s, I can choose Chicken as the implementation. If I run C-c C-z, it starts an REPL and switches to it. My buffer seems to be correctly ...
0
votes
0
answers
434
views
Emacs + Geiser on Windows - Hangs when running Chicken Scheme in the REPL
After one or two rounds of expressions loaded from the buffer into the REPL with C-c C-b or C-c M-b, Emacs hangs until I press C-g. Sometimes it ends up switching to the REPL, but even when it does ...
8
votes
3
answers
1k
views
REPL Driven Development in Node.js
In languages like Clojure and Scheme I do really enjoy writing code in REPL-driven mode, when you write a piece of code in an editor (Emacs in my case), send it to your REPL, play with it then go back ...
2
votes
1
answer
369
views
Emacs ESS: pipe output from R REPL into buffer
I want to have the ability to execute statements on R's REPL with the option to pipe it to a buffer so I can quickly refer back to it later.
To run a shell command and output to *shell command buffer*...
2
votes
1
answer
541
views
Long Outputs Inside Emacs Cider Repl Buffers
When using Emacs with the Cider plug-in, moving inside the REPL buffer gets incredibly slow, when there was accidently printed a huge amount of output to the REPL buffer.
Is there a way to configure ...
3
votes
2
answers
343
views
What is the best practice for using clojure.repl functions during interacitve development?
I often find myself typing (ns user) and pressing C+c M+n repeatedly when I work on clojure source code. The problem is that I often use functions like source and doc and they are in clojure.repl and ...
5
votes
2
answers
710
views
How to get a reference to the last returned object in Emacs Slime
Using Emacs Slime, how can I access the object or value that was returned by the last expression in the REPL?
In ipython it's _ so that I can save it in a variable if the return value is what I ...
7
votes
3
answers
1k
views
Clojure - start a REPL without a project.clj
I started using Clojure with leiningen (and now boot).
Now I sometimes want to get quickly to a Clojure{Script} CIDER REPL in Emacs to execute just a few instructions. I don't want to create a ...
4
votes
2
answers
5k
views
Executing Clojure in Emacs with `cider-jack-in`
I'm trying to run Clojure emacs with cider package installed.
I use Emacs 24.5.1 on Mac OS X 10.10.4.
I downloaded lein script and copied the script in ~/Dropbox/bin.
I checked with lein repl that ...