From: rearman Date: Tue, 16 Sep 2025 14:41:45 +0000 (-0400) Subject: Set sly to always switch to an existing repl if available X-Git-Url: https://git.earman.xyz/?a=commitdiff_plain;h=e148fb1af51a7f90185fe3e0e6239ade504e1f47;p=emacsinit.git Set sly to always switch to an existing repl if available --- diff --git a/re/re-packages.el b/re/re-packages.el index ebafcf9..6dd30b3 100644 --- a/re/re-packages.el +++ b/re/re-packages.el @@ -84,7 +84,8 @@ (use-package sly :config (setq inferior-lisp-program "sbcl" - sly-net-coding-system 'utf-8-unix) + sly-net-coding-system 'utf-8-unix + sly-command-switch-to-existing-lisp 'always) (let ((core (expand-file-name "~/sbcl.core-for-sly"))) (when (file-exists-p core) (setq sly-lisp-implementations (list `(sbcl ("sbcl" "--core" ,core)))))))