0
votes
1answer
51 views

SLIME, SBCL, and EMACS setup not resulting in expected output

I just set up Slime and am immediately noticing some issues I can't seem to resolve. This is the result I get when I try to evaluate and print foo (C-c C-p) I thought this would return 6 instead of ...
2
votes
3answers
67 views

Autocomplete parentheses in SLIME

I'm learning Common Lisp using SLIME. Is there a way to autocomplete parentheses so that when I type an open paren, a closed one is automatically added? I'm more of a vim guy, so in mv ~/.vimrc I ...
1
vote
1answer
66 views

Turn-off debugger in Emacs SLIME

According to this question, I can customize the variable *DEBUGGER-HOOK* so that it falls back to toplevel (in REPL) instead of the debugger. I've added this line to my ~/.sbclrc and it's all fine ...
2
votes
1answer
38 views

How to highlight current argument in SLIME

I am using sbcl with GNU Emacs 24.3.1 and the 2012-04-14 release of SLIME, on Arch Linux to write some Common Lisp code. When writing an expression, if I type, for example (if the minibuffer will ...
0
votes
0answers
40 views

How do I load cl-opengl and lispbuilder-sdl-image automatically at emacs startup?

How do I load cl-opengl and lispbuilder-sdl-image automatically at emacs startup? now i have to slime-compile-load these commands in emacs at startup to use cl-opengl and image: (asdf:load-system ...
0
votes
2answers
98 views

M-x slime [No match] in emacs under mac osx

I am learning common lisp now. I want to use slime in emacs, but when I press M-x slime it says [No match] Initially I download the CVS snapshot and put this in my .emacs file (setq ...
1
vote
1answer
83 views

can't find any symbol in common lisp in emacs with slime

According to the guide on the Internet, we can search in the HyperSpec for the symbol like "format" in emacs by typing C-c C-d h , However, I just cannot have it work, emacs just prompts that there's ...
0
votes
1answer
180 views

Ensime inferior scala mode

I've setup Emacs + Ensime for scala. I'm able to start sbt console inside emacs using C-c C-v s If i start scala console inside emacs using C-c C-v z, I get the following error Welcome to Scala ...
0
votes
0answers
33 views

How to make slime-edit-definition work with non-compiled functions?

I am using slime with clisp. If I try to use M-. on a function call while the file has never been compiled but only evaluated (by the mean of `slime-eval-last-expression' aka C-x C-e) then I get that ...
1
vote
1answer
130 views

Emacs slime mini buffer take-over

For no obvious reason firing up slime in Emacs produces this message in the mini buffer: Polling "/tmp/slime.5000 .. 25 (Abort with `M-x slime-abort-connection'.) [730 times] That [730 times] ...
1
vote
2answers
114 views

when setting up “Slime” in “emacs”(latest version) how do i tell it to load swank faster?

the slime manual says this: "Loading Swank faster For SBCL, we recommend that you create a custom core file with socket support and POSIX bindings included because those modules take the most time to ...
0
votes
0answers
103 views

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 ...
6
votes
3answers
500 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 ...
4
votes
1answer
67 views

how to display the the popup symbol document like in auto-complete?

While programming in emacs, like Lisp, the auto-complete mode will be popup candidates, also with a document tip after several seconds. My question is how to display the document tip directly, it is ...
3
votes
2answers
153 views

Load remote Lisp files

Maybe it's an unusual case, but I like to connect to a remote computer running Clozure CL AND compiling there some files, which are located on my local desktop. So, what I've achieved by now is to ...
0
votes
1answer
221 views

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 ...
3
votes
2answers
233 views

Setting up SLIME on MacOSX

I've been dancing around LISP for decades, but now have decided to get serious. I'm going through the online version of Practical Common LISP. This is my setup: MacOSX 10.7.8 Xcode 4.5.2 SBCL ...
1
vote
1answer
109 views

Use swank-js without js2-mode as major mode in emacs

I don't want to use js2-mode as major mode when editing js files. But I find I use swank-js very often(with magnar's slime-js setting). Of course I know that swank-js depends on js2-mode Can I just ...
6
votes
2answers
317 views

Can I use swank-js to complete node.js APIs in js2-mode?

I use swank-js in js2-mode in emacs. Can I use it to complete node.js build-in or third-party APIs such as fs.readFile, fs.writeFile, express.use, async.forEach etc. in js2-mode ? If yes, what would ...
1
vote
1answer
109 views

Examine values of local variables in SLIME debugger?

I'm in search for a better technique for doing it. My general struggle is with the fact that debugger enters either too late or too early to be able to catch the value of the variables. What I tried ...
3
votes
1answer
229 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. ...
0
votes
1answer
150 views

Editing a lisp file in emacs with SBCL

Ok so i am trying to get started with lisp and slime and i am running into some problems. I have correctly installed emacs and slime and SBCL but i run into problems when trying to edit files. I am ...
3
votes
1answer
87 views

slime - how to compensate probable recent changes

There has probably some minor/major change in how slime works, but since then I got a hard time fixing it. I am used to a slime where, when started, there is a REPL like CL-USER> a *scratch* ...
2
votes
1answer
81 views

Has anyone gotten swank.rb working with Emacs 24? [closed]

I've been looking for a SWANK server implementation for Ruby. I found https://bitbucket.org/yinwm/usemacs/src/5bb82e78239c/raw-elisp/march/macos/site-lisp/slime/contrib/swank.rb but have had little ...
2
votes
1answer
113 views

Syntax highlighting mode for SLIME in emacs

How do I enable the syntax highlighting mode for SLIME in emacs?
1
vote
0answers
69 views

in slime-autodoc: error in process filter: Wrong type argument: sequencep, :not-available

When I use the slime-repl, I get this message in my minibuffer and emacs hangs for a second: error in process filter: Wrong type argument: sequencep, :not-available It stops happening when I turn ...
2
votes
1answer
462 views

Setting the SLIME in emacs

I was trying to install the SLIME. I downloaded the zipped package and according to the README file, I had to put this piece of code in the .emacs file: (add-to-list 'load-path ...
1
vote
0answers
107 views

How to get SLIME to autocomplete symbols from loaded other packages?

I think this used to work out of the box in Emacs 23, but in 24 it doesn't. So, suppose I have Alexandria package loaded with Quicklisp. If I run (apropos "curry") in the REPL, for example, it finds ...
0
votes
1answer
160 views

Slime-repl isn't here

I have installed Emacs + SBCL + slime but I have a problem with slime. I'm on a Mac OS X 10.7.4 When I do M-x slime I have two screen scratch on the top and inferior-lisp on the bottom. But I don't ...
1
vote
1answer
79 views

Emacs and chord translation

I'm having some issues with emacs, in particular when using SLIME. It's not reading the slime-eval-defun command (bound to C-M-x) but will read C-M-S-x... same issue with the indent function C-X-q, I ...
3
votes
2answers
428 views

How to start programming with SLIME and Steel Bank Common Lisp on Windows 7 x64?

I'd very much like to start using these tools, but it seems I'm not smart enough :-( I've spent hours reading docs, moving folders around and editing config files, but I still cannot start Emacs ...
3
votes
2answers
208 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
148 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 ...
0
votes
1answer
214 views

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 ...
2
votes
2answers
572 views

slime-fancy not loading with emacs sbcl slime windows configuration

I have slime with sbcl working in emacs 24.1 but can not get a slime repl to open. I can use M-x slime to make a connection to sbcl in a inferior-lisp buffer but I can not invoke the slime-repl or ...
1
vote
1answer
594 views

How to install the slime into emacs under Windows7

How to install the slime into emacs under Win7? I download a compact package with '.tgz'. But it seems for linux. But there is really not one thing for windows(win 32 OS). I unfold this package and ...
0
votes
2answers
131 views

*scratch* buffer using SLIME

I realize that SLIME is the Superior Lisp Interaction Mode but I'm wondering if there is a "Lisp Interaction" buffer that works with Common Lisp like the *scratch* buffer works with Emacs Lisp. I.E. ...
0
votes
1answer
197 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
494 views

slime-connect not working

I am an Emacs and Common Lisp novice. I have successfully installed SLIME in my Emacs, but I am unable to run it. Alt + x slime-connect gives the following options, accepting which gives the error ...
3
votes
1answer
199 views

How to enable rainbow parentheses in SLIME?

I am an Emacs and Common Lisp novice. I have successfully installed SLIME in my Emacs, but I noticed it does not have rainbow parentheses (which comes as a surprise). How do I enable this feature? ...
1
vote
1answer
439 views

Emacs: ac-slime for auto complete

I am trying to add auto complete for *.lisp files. My slime setting is: (add-to-list 'load-path "~/.emacs.d/plugins/slime/") (setq slime-lisp-implementations '((sbcl ("/opt/sbcl/bin/sbcl" ...
3
votes
1answer
162 views

How to reload and restart quickly in SLIME in development

I started using emacs and slime to develop some little service. I have found a way to reload the code after changes but I want this a lot more convenient and faster. This is how I doo it now: 1) ...
2
votes
1answer
129 views

Slime in emacs seems has conflicts with autopair

I have just install slime in emacs. And after removed all the other plugins for debuging, I found that slime seems had conflicts with autopair.(Or a bug of autopair?).In slime, when I typed C-c C-c, ...
2
votes
0answers
51 views

prompt-read and autocomplete conflict in slime

I have auto-complete-mode turned on in the slime repl (which is great), but if I enter (prompt-read "What? ") I get this error: ; pipelined request... (swank:simple-completions "ye" (quote ...
4
votes
3answers
556 views

Running a Compiled Lisp Program

I'm guessing this is not rocket science, but how can I run a compiled lisp file? I am using emacs and SLIME under Windows. From the SLIME menu it is straightforward to compile the file and, once it ...
2
votes
1answer
223 views

Emacs / Slime / Clojure / Browser Tree

I was recently playing with CounterClockwise (a Clojure plugin for Eclipse). One thing I really liked about CounterClockwise was that: center panel = code left panel = file system tree right panel = ...
7
votes
1answer
883 views

Clojure Editor written in Clojure

Note: I'm not looking for LightTable. I really am looking for a Clojure Editor implemented in Clojure. Recently, I've been studying slime/swank/elisp. Although it's an amazing system, I actually ...
1
vote
2answers
202 views

Emacs / Slime Key Binding / Sending command to Swank Server

I'm familiar with scheme, but new to emacs (switching over from VIM) and elisp. I know how to do the following: make a simple key binding C-c iwb = indent whole buffer F2 = turns folding on/off ...
4
votes
1answer
168 views

Emacs / Slime / Hard Code Vertical Split Ratio

I'm currently in mode: C-x 2 Normally, I don't care much about vertical splitting. However, I'm coding on a 13" display, which makes vertical space rather precious. I would like some setup where ...
7
votes
1answer
184 views

Can't send funny chars to SLIME

Although I set UTF-8 everywhere (in my lein project, the slime-lisp group customization, the Emacs buffer itself...), I keep getting this error when trying to run code such as (def beta "β"): Coding ...

1 2 3