From 34a9e8eb3a1bb420144572b1caf117e9b9655e22 Mon Sep 17 00:00:00 2001 From: kaz-yos Date: Mon, 30 Jun 2014 05:18:26 +0900 Subject: [PATCH] Add eval-in-repl Consistent eval interface for various REPLs This package does what ESS does for R for various REPLs, including ielm. Emacs Speaks Statistics (ESS) package has a nice function called 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. This package implements similar work flow for various read-eval-print-loops (REPLs) shown below. https://github.com/kaz-yos/eval-in-repl/ --- recipes/eval-in-repl | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 recipes/eval-in-repl diff --git a/recipes/eval-in-repl b/recipes/eval-in-repl new file mode 100644 index 00000000..417d7930 --- /dev/null +++ b/recipes/eval-in-repl @@ -0,0 +1,6 @@ +;;; https://github.com/milkypostman/melpa#recipe-format +(eval-in-repl :fetcher github + :repo "kaz-yos/eval-in-repl" + :commit "origin/master" + :files ("*.el" + (:exclude "*.md" "*.png")))