slime Questions
7
I was working in Emacs and then suddenly, the slime-repl sbcl says text is read only. Well that's great because now I can't type anything into it. How do I fix this?
2
Solved
64-bit Windows 7
Clozure Common Lisp Version 1.9 WindowsX8632
Emacs 24.3.1
Slime changelog date 2014-06-17
I have an example .lisp file which starts out as follows:
(ql:quickload 'qt)
(in-pac...
Lagoon asked 23/11, 2014 at 22:45
10
I have a question regarding how to "gracefully exit SLIME", when I quit Emacs. Here is the relevant portion of my config file:
;; SLIME configuration
(setq inferior-lisp-program "/usr/local/bin/s...
3
I have been playing with saving running Common Lisp images to save time upon restart and make the development more efficient. However, I am having a bit of a problem since when I run the following ...
Alimentary asked 16/1, 2018 at 13:39
9
Solved
I do most of my development in Common Lisp, but there are some moments when I want to switch to Scheme (while reading Lisp in Small Pieces, when I want to play with continuations, or when I want to...
Rake asked 21/9, 2008 at 12:34
2
Solved
Is there a way to explore the current state of a Common Lisp image (i.e. the loaded packages, available symbols, etc.)?
I know about the command (apropos "foo"), but I would like to see t...
Glans asked 2/7, 2021 at 7:9
3
I am trying to get Emacs, SLIME and quicklisp to work together properly. I have the following environment set up:
Installed Emacs
Installed SLIME in Emacs
Installed SBCL
Installed quicklisp
Run ...
Cas asked 7/10, 2015 at 23:13
3
Solved
This is how I export symbols :bar and :baz from package foo:
(in-package :cl-user)
(defpackage foo
(:use :cl)
(:export :bar :baz))
(in-package :foo)
When I remove :baz from the list of exporte...
Geary asked 5/7, 2012 at 19:6
18
Solved
Currently my workflow with Emacs when I am coding in C or C++ involves three windows. The largest on the right contains the file I am working with. The left is split into two, the bottom being a sh...
Foresheet asked 15/9, 2008 at 14:31
2
Solved
I'm wondering what are some efficient ways to debug Common Lisp interactively using Emacs and SLIME.
What I did before: As someone who learned C and Python using IDEs (VS and PyCharm), I am used ...
Seften asked 10/6, 2016 at 18:25
2
Solved
I was trying to install SLIME. I downloaded the zipped package and according to the README file, I have to put this piece of code in my Emacs configuration file:
(add-to-list 'load-path "~/hacking...
Hail asked 26/9, 2012 at 18:2
4
I was trying to use the slime-connect function to get access to a remote server with sbcl. I followed all the steps from the slime.mov movie from Marco Baringer, but I got stuck when creating the s...
Jueta asked 16/12, 2008 at 21:15
1
Every time I start work, I fire up Emacs, M-x cd to a working directory, M-x slime to start Slime, then do run (ql:quickload 'myproject) in the slime repl, (or , load-system myproject) followed by ...
Lowboy asked 2/5, 2018 at 18:35
1
Solved
Goal
I would like to have my Common Lisp (SBCL + GNU Emacs + Slime) environment be sort of like a Smalltalk image in that I want to have a big ball of mud of all my code organized in packages and ...
Luthuli asked 9/3, 2018 at 9:23
2
I use paredit on emacs with SLIME's repl. This means that at any point during my typing on the repl, my s-expressions are balanced.
However, they may not be complete, and I might want to continue...
Selfpossessed asked 14/11, 2017 at 10:57
4
Solved
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 ....
Nashville asked 20/8, 2012 at 15:2
5
Solved
This is a double question for you amazingly kind Stacked Overflow Wizards out there.
How do I set emacs/slime/swank to use UTF-8 when talking with Clojure, or use UTF-8 at the command-line REPL? ...
3
Solved
When writing Common Lisp code, I use SLIME. In particular, I compile the buffer containing definitions of functions by using C-C C-k, and then switch to the REPL to run those functions. Putting exe...
Rusch asked 20/3, 2012 at 23:3
1
Solved
I am using Emacs with SLIME for my development environment. When I type (write-to and then C-M-i I get the following autocompletions:
Click on a completion to select it.
In this buffer, type RET t...
Mariannemariano asked 27/9, 2016 at 7:9
2
Solved
I can run emacs and start slime (with M-x slime). At this point I get the REPL in the inferior-lisp buffer and can run lisp there. But when I open up lisp code in another buffer none of the slime-g...
Detribalize asked 29/12, 2010 at 3:35
2
Solved
I am trying to figure out how to step through code in sbcl and Slime after invoking the debugger with something like break. I do not want to have to start stepping from the beginning. For example i...
Tortuosity asked 11/1, 2015 at 17:29
2
Solved
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 e...
Clutter asked 4/1, 2016 at 16:2
4
Solved
Is there a way to copy/yank a whole a form in Slime/Emacs?
For instance, if I have the following function:
(myfunc (lst)
(myotherfunc lst))
I'd like to yank/copy:
(myotherfunc lst)
by issui...
4
Solved
1
I want to learn Common Lisp and have installed emacs (24.3) and slime via the emacs package manager.
In the slime REPL syntax highlighting doesn't work. When I start Lisp-Mode (while in the slime ...
Lodicule asked 12/9, 2014 at 13:29
1 Next >
© 2022 - 2025 — McMap. All rights reserved.