{"id":13862606,"url":"https://github.com/diadochos/org-babel-eval-in-repl","last_synced_at":"2025-07-14T12:31:36.866Z","repository":{"id":50319511,"uuid":"74133026","full_name":"diadochos/org-babel-eval-in-repl","owner":"diadochos","description":"Send and eval org-mode babel code blocks in various REPLs (therefore it's async)","archived":false,"fork":false,"pushed_at":"2021-10-29T06:12:25.000Z","size":79,"stargazers_count":57,"open_issues_count":9,"forks_count":8,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-08-05T06:06:08.687Z","etag":null,"topics":["async","babel-eval","emacs","emacs-lisp","literate-programming","org-mode","repl"],"latest_commit_sha":null,"homepage":"","language":"Emacs Lisp","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/diadochos.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-11-18T13:42:45.000Z","updated_at":"2024-05-30T20:12:59.000Z","dependencies_parsed_at":"2022-09-06T08:02:09.028Z","dependency_job_id":null,"html_url":"https://github.com/diadochos/org-babel-eval-in-repl","commit_stats":null,"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/diadochos%2Forg-babel-eval-in-repl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/diadochos%2Forg-babel-eval-in-repl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/diadochos%2Forg-babel-eval-in-repl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/diadochos%2Forg-babel-eval-in-repl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/diadochos","download_url":"https://codeload.github.com/diadochos/org-babel-eval-in-repl/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":225974520,"owners_count":17553968,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["async","babel-eval","emacs","emacs-lisp","literate-programming","org-mode","repl"],"created_at":"2024-08-05T06:01:48.446Z","updated_at":"2024-11-22T22:31:20.510Z","avatar_url":"https://github.com/diadochos.png","language":"Emacs Lisp","funding_links":[],"categories":["Emacs Lisp"],"sub_categories":[],"readme":"[![MELPA](http://melpa.org/packages/org-babel-eval-in-repl-badge.svg?)](http://melpa.org/#/org-babel-eval-in-repl) [![MELPA Stable](http://stable.melpa.org/packages/org-babel-eval-in-repl-badge.svg?)](http://stable.melpa.org/#/org-babel-eval-in-repl) [![Travis CI](https://travis-ci.org/diadochos/org-babel-eval-in-repl.svg)](https://travis-ci.org/diadochos/org-babel-eval-in-repl)\n# org-babel-eval-in-repl\nExecute babel source code blocks with [eval-in-repl](https://github.com/kaz-yos/eval-in-repl).\n\n\n![Demonstration](https://user-images.githubusercontent.com/1299928/68528644-d6ab1200-02f5-11ea-8bf9-9997b3755429.gif)\n\n## Features\n- *Async execution* (because it uses an external process!)\n- Babel execution without the output written in the buffer (Less visual distraction! Output is reproducible as long as the code is saved)\n\n## Installation\nAvailable via MELPA ([Set up MELPA](https://github.com/melpa/melpa) if you haven't already). Run\n```\nM-x package-install RET org-babel-eval-in-repl RET\n```\n\n## Usage\nNo keybindings are provided by default (because I couldn't find one that's appropriate). Create your own comfortable keybind for execution. Here's my case:\n\n``` emacs-lisp\n(with-eval-after-load \"ob\"\n  (require 'org-babel-eval-in-repl)\n  (define-key org-mode-map (kbd \"C-\u003creturn\u003e\") 'ober-eval-in-repl)\n  (define-key org-mode-map (kbd \"M-\u003creturn\u003e\") 'ober-eval-block-in-repl))\n```\n\nSee the [wiki](https://github.com/diadochos/org-babel-eval-in-repl/wiki) for more usage (you can find more practical keybindings)\n\n### Recommended config (optional):\n(This prevents the cursor to jump to the repl buffer after execution. I was more comfortable with this)\n``` emacs-lisp\n(with-eval-after-load \"eval-in-repl\"\n  (setq eir-jump-after-eval nil))\n```\n\n### Example\n\n``` org\n#+BEGIN_SRC ruby\np \"Test\"\n#+END_SRC\n```\nPress `C-\u003creturn\u003e` on the source code.\n\n### Available languages\n| Available languages (Prepared in the package) | Requirements             |\n| :-----------------------------------------    | :----------------------- |\n| matlab                                        | matlab-mode settings     |\n| R                                             | ESS-mode                 |\n| stata                                         |                          |\n\n| Available languages (Delegated to [eval-in-repl](https://github.com/kaz-yos/eval-in-repl)) | Requirements             |\n| :-----------------------------------------                                                 | :----------------------- |\n| ruby                                                                                       |                          |\n| clojure                                                                                    |                          |\n| racket                                                                                     |                          |\n| scheme                                                                                     |                          |\n| hy                                                                                         |                          |\n| emacs-lisp                                                                                 |                          |\n| javascript                                                                                 |                          |\n| ocaml                                                                                      |                          |\n| prolog                                                                                     |                          |\n| python                                                                                     |                          |\n| sh                                                                                         |                          |\n| lisp                                                                                       |                          |\n| perl                                                                                       |                          |\n| sml                                                                                        |                          |\n\n## Contributors\nCheck out [here](./THANKS.md) for a list of contributors.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdiadochos%2Forg-babel-eval-in-repl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdiadochos%2Forg-babel-eval-in-repl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdiadochos%2Forg-babel-eval-in-repl/lists"}