Skip to main content

All Questions

4 votes
2 answers
305 views

How to make emacs switch to *scheme* by default when eval / load from the file?

The problem: I'm in scheme-mode (simple quack) scheme is already running eval expression it sends the expression to scheme buffer but! doesn't bring that buffer up in 2nd window = no immediate ...
bravmi's user avatar
  • 517
1 vote
2 answers
5k views

Emacs Lisp print output

I ran the following code to print 15 sequential values of i both in the scratch buffer and the ielm repl: (defvar i 0) (while (< i 15) (print i) (setq i (+ i 1)))` What I ...
CodeKingPlusPlus's user avatar
4 votes
3 answers
2k views

How do I print a string in Emacs lisp with ielm?

I'd like to print a string in ielm. I don't want to print the printed representation, I want the string itself. I'd like this result: ELISP> (some-unknown-function "a\nb\n") a b ELISP> I can't ...
Wilfred Hughes's user avatar
67 votes
4 answers
23k views

REPL for Emacs Lisp

What are some REPLs for Emacs Lisp? Is there only one that is within Emacs? Are there some that run inside terminal outside Emacs?
Tim's user avatar
  • 99.9k