guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#57737] [PATCH 05/22] gnu: Add emacs-eval-in-repl-geiser.


From: Nicolas Graves
Subject: [bug#57737] [PATCH 05/22] gnu: Add emacs-eval-in-repl-geiser.
Date: Sun, 11 Sep 2022 20:15:54 +0200

* gnu/packages/emacs-xyz.scm (emacs-eval-in-repl-geiser): New variable.
---
 gnu/packages/emacs-xyz.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index 26ba6f2c85..baee5851a8 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -27166,6 +27166,32 @@ (define-public emacs-eval-in-repl-slime
 shell (R, Julia, Stata, etc) visibly.  It also start up a shell if there is
 none.")
     (license license:expat)))
+
+(define-public emacs-eval-in-repl-geiser
+  (package
+    (name "emacs-eval-in-repl-geiser")
+    (version "0.9.7")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "https://raw.githubusercontent.com/kaz-yos/eval-in-repl/";
+             version "/eval-in-repl-geiser.el"))
+       (sha256
+        (base32
+         "0x2v51hwm1iaa0r8mn34i08vck5y32njfwfiq0c0blbfmjsqlyz2"))))
+    (build-system emacs-build-system)
+    (propagated-inputs (list emacs-eval-in-repl emacs-geiser))
+    (home-page "https://github.com/kaz-yos/eval-in-repl";)
+    (synopsis "Consistent evaluation interface for Racket/Scheme REPLs for 
emacs")
+    (description"\
+This package provides a consistent ESS-like evaluation interface for
+Racket/Scheme REPLs, relying on @code{emacs-geiser}.  Emacs Speaks Statistics
+(ESS) package has a nice function called
+@code{ess-eval-region-or-line-and-step}, which is assigned to C-RET.  This
+function sends a line or a selected region to the corresponding shell (R,
+Julia, Stata, etc) visibly.  It also start up a shell if there is none.")
+    (license license:expat)))
 (define-public emacs-eval-sexp-fu-el
   (package
     (name "emacs-eval-sexp-fu-el")
-- 
2.37.3






reply via email to

[Prev in Thread] Current Thread [Next in Thread]