From 1c1c5fcc80d46463913637e053cfe68065edbf26 Mon Sep 17 00:00:00 2001 From: contrapunctus Date: Thu, 6 Jan 2022 11:05:58 +0530 Subject: [PATCH] Add slime-eval-region to CL hydra --- init.org | 2 ++ 1 file changed, 2 insertions(+) diff --git a/init.org b/init.org index 94a8d0a..3fa9ee8 100644 --- a/init.org +++ b/init.org @@ -2124,8 +2124,10 @@ With PREFIX argument and CMD not supplied - prompt for command." *** eval #+BEGIN_SRC emacs-lisp (defhydra my-cl-hydra-eval (:color blue) + "Eval (CL)" ("b" slime-eval-buffer "buffer") ("e" slime-eval-defun "defun") + ("r" slime-eval-region "region") ("l" slime-eval-last-expression "last expression")) #+END_SRC *** help