org-babel-eval-in-repl

Homepage: https://github.com/diadochos/org-babel-eval-in-repl

Author: Takeshi Teshima

Updated:

Summary

Eval org-mode babel code blocks in various REPLs

Commentary

This package allows you to execute org-mode (babel) source code blocks with eval-in-repl.
## Features
- Async execution (because it uses an external process!)
- Babel execution without the output written in the buffer (Less visual distraction! Output is reproducible as long as the code is saved)

## Usage
(with-eval-after-load "ob"
  (require 'org-babel-eval-in-repl)
  (define-key org-mode-map (kbd "C-") 'ober-eval-in-repl)
  (define-key org-mode-map (kbd "C-c C-c") 'ober-eval-block-in-repl))

## Recommended config (optional):
(with-eval-after-load "eval-in-repl"
  (setq eir-jump-after-eval nil))

Dependencies