vindarel
vindarel
--- Here is a small Emacs/SLIME tip, since I couldn't find it on Google and I had to come up with the solution myself. I'm working on a long running...
> By default SBCL implements `eval` by calling the native code compiler. > > SBCL also includes an interpreter for use in special cases where using the compiler is undesirable,...
Wine progress: * You can download a full SBCL installer from their website, run wine on it, and then open a REPL via the resulting .exe * `*features*` contains :WIN32...
It's shipped [in the slime-media contrib](https://github.com/slime/slime/blob/master/contrib/slime-media.el). ## Example (setq slime-enable-evaluate-in-emacs t) (insert-image (create-image "/tmp/test.png"))  * from: https://righele.it/2012/02/22/display-images-in-slime-from-common-lisp/ ## Show images in a separate pop-up buffer https://readevalprint.tumblr.com/post/617089509006491648/previewing-images-in-and-out-of-slime-repl ```lisp (defun view-file-slime...
Tells all the packages that inherit a symbol and what their export status is: ```lisp ;; by shinmera, Discord, 2025-04 (defun who-uses-symbol (symbol) (let ((f ())) (dolist (p (list-all-packages)) (multiple-value-bind...
from https://www.n16f.net/blog/switching-between-implementations-with-slime/ Running the slime function several times will create multiple connections as expected. Commands executed in Common Lisp buffers are applied to the current connection, which is by default...