ob-elixir icon indicating copy to clipboard operation
ob-elixir copied to clipboard

org-babel functions for elixir evaluation

Results 6 ob-elixir issues
Sort by recently updated
recently updated
newest added

I'm getting some junk filled results in Spacemacs on macOS Ventura: ```org #+begin_src elixir 21 * 2 #+end_src #+RESULTS: : import_file("/var/folders/bl/t34fzq8x091f59cgcvtq2j540000gn/T/babel-3O5x9z/elixir-Vh4j43")$$iex(5)> import_file("/var/folders/bl/t34fzq8x091f59cgcvtq2j540000gn/T/babel-3O5x9z/elixir-Vh4j43") : 42$iex(6)> ```

## Motivation Use hex libraries within code blocks on org-mode ## What was done - `ob-elixir-ensure-session` checks if there is a `mix.exs` file in the same directory as the org...

Adding a ":results output" option suppresses the output of the respective computation in IEx. This allows to use IO.puts/2 or IO.inspect/2 without displaying the result of the computation. Compare ```...

Setting `lexical-binding` to t is now a recommended practice for all Emacs packages, so I set it. This spares you from explicitly making a local variable of `process-environment`. It is...

Hi Zweifisch, Would you consider to contribute your Org related packages to "Org-proper"? In general, we are happy to add new `ob` languages without any fuss, and it's nice to...

Replace `start-process` with `start-file-process` and add `file-local-name` to allow running over tramp.