All Projects → zweifisch → ob-elixir

zweifisch / ob-elixir

Licence: other
org-babel functions for elixir evaluation

Programming Languages

emacs lisp
2029 projects

Projects that are alternatives of or similar to ob-elixir

ob-tmux
Ob-tmux is an Emacs library that allows org mode to evaluate code blocks in a tmux session.
Stars: ✭ 46 (+91.67%)
Mutual labels:  org-mode, org-babel
.emacs.d
Vanilla, Evil, literate Emacs configuration
Stars: ✭ 62 (+158.33%)
Mutual labels:  org-mode, org-babel
ob-ess-julia
A lightweight Julia support for org mode using Emacs Speaks Statistics
Stars: ✭ 16 (-33.33%)
Mutual labels:  org-mode, org-babel
Ob Async
Asynchronous src_block execution for org-babel
Stars: ✭ 249 (+937.5%)
Mutual labels:  org-mode
org-preview-html
Automatically preview org-exported HTML files within Emacs.
Stars: ✭ 160 (+566.67%)
Mutual labels:  org-mode
agenda
Org agenda in the console
Stars: ✭ 112 (+366.67%)
Mutual labels:  org-mode
org-gantt
Gantt chart for emacs org-mode
Stars: ✭ 55 (+129.17%)
Mutual labels:  org-mode
Emacs Easy Hugo
Emacs major mode for managing hugo
Stars: ✭ 235 (+879.17%)
Mutual labels:  org-mode
idle-org-agenda
A package that shows your agenda when Emacs is idle
Stars: ✭ 40 (+66.67%)
Mutual labels:  org-mode
my-emacs
My Emacs configuration
Stars: ✭ 35 (+45.83%)
Mutual labels:  org-mode
emacs-ob-racket
Emacs Org-Mode Babel code block Racket support
Stars: ✭ 22 (-8.33%)
Mutual labels:  org-mode
trio
Datatype agnostic triple store & query engine API
Stars: ✭ 78 (+225%)
Mutual labels:  org-mode
org-table-sticky-header
Sticky header for org-mode tables
Stars: ✭ 31 (+29.17%)
Mutual labels:  org-mode
ox-leanpub
Org-mode exporter for Leanpub books - mirrored from GitLab
Stars: ✭ 18 (-25%)
Mutual labels:  org-mode
vscode-text-tables
VSCode extension that brings the power of Emacs table editing
Stars: ✭ 36 (+50%)
Mutual labels:  org-mode
Evil Org Mode
Supplemental evil-mode keybindings to emacs org-mode
Stars: ✭ 241 (+904.17%)
Mutual labels:  org-mode
uniorg
An accurate Org-mode parser
Stars: ✭ 190 (+691.67%)
Mutual labels:  org-mode
dotfiles
My dotfiles - Emacs centric OSX Big Sur
Stars: ✭ 29 (+20.83%)
Mutual labels:  org-mode
dotfiles
I showed you my source code, pls respond
Stars: ✭ 45 (+87.5%)
Mutual labels:  org-mode
this-month-in-org
A monthly blog on developments with Org
Stars: ✭ 40 (+66.67%)
Mutual labels:  org-mode

ob-elixir

setup

To use ob-elixir in an org-babel source block, the elixir language must be enabled in the custom org-babel-load-languages alist. Alternatively, running the following snippet during initialization will enable the mode.

(org-babel-do-load-languages
 'org-babel-load-languages
 '((emacs-lisp . t)
   (elixir . t)))

supported header arguments

  • cookie
  • name
  • remsh
  • sname
  • session

examples

connect to remote shell

#+BEGIN_SRC elixir :remsh name@node :sname console
Node.self
#+END_SRC

#+RESULTS:
: :name@node
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].