Questions tagged [slime]

The Superior Lisp Interaction Mode for Emacs.

SLIME is a minor mode for interacting with a Common Lisp process which provides compilation, documentation lookup, and REPL services in GNU Emacs.

GitHub source code.

Read also Wikipedia article.

397 questions
0
votes
1 answer

Loading SLIME editing commands in Emacs in LispBox

I'm using LispBox on OS X. I was trying to use the SLIME command C-c C-] to close all open parentheses in a given S-expression. But the emacs status tells me that C-c C-] is undefined. When I manually type it in using "M-x…
Capstone
  • 2,254
  • 2
  • 20
  • 39
0
votes
1 answer

Emacs (24) loads and runs emacs-w3m, but doesn't use it for Lisp HyperSpec

I'm running an Emacs 24 + SLIME set up currently and am trying to get the Common Lisp HyperSpec to display in Emacs via emacs-w3m. Presently, if I enter into the mini-buffer M-x w3m it does indeed fire up emacs-w3m, and all works as…
Juser1167589
  • 415
  • 7
  • 16
0
votes
1 answer

Aquamacs+slime: Loading a lisp file at startup

I'm running Aquamacs + Slime and I'm able to start Slime automatically when I start Aquamacs. However, when I try to load a lisp file after that I keep getting various errors depending on how I'm trying to load the file. Here's my…
WanderingPhd
  • 189
  • 1
  • 9
0
votes
1 answer

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!
Pranav
  • 3,340
  • 8
  • 35
  • 48
-1
votes
1 answer

How do I solve name service error in sbcl with slime?

I've recently installed SLIME mode and I can't get it to work. Upon startup (M-x slime) it throws out this error: This is SBCL 2.1.1, an implementation of ANSI Common Lisp. More information about SBCL is available at . SBCL is…
Simponic
  • 1
  • 2
-2
votes
2 answers

PyShell and IPython are showing an extra indentation that is not there

I just started using tmux along with slime, PyShell and IPython and I have ran into the following problem. I am trying to run the following code: names = ['a', 'b', 'c'] nc = { name : 0 for name in names} count = 1 for name in names: nc[name] +=…
alpastor
  • 199
  • 6
-3
votes
1 answer

Common Lisp Package and Module Management

I am currently trying to understand how Common Lisp manages its packages and modules. Consider this code: (in-package :cl-user) (ql:quickload :cl-who) (ql:quickload :hunchentoot) (ql:quickload :parenscript) (defpackage :retro-games (:use :cl…
MadPhysicist
  • 5,401
  • 11
  • 42
  • 107
1 2 3
26
27