diff --git a/layers/+lang/elixir/README.org b/layers/+lang/elixir/README.org index 282565065..6ff7fd022 100644 --- a/layers/+lang/elixir/README.org +++ b/layers/+lang/elixir/README.org @@ -89,13 +89,14 @@ You find and overview of all the key-bindings on the [[file:alchemist-refcard.pd | Key Binding | Description | |-------------+-----------------------------------------------------------------| +| ~SPC m s c~ | Compiles the current buffer in the IEx process. | | ~SPC m s i~ | Start an =iex= inferior process | | ~SPC m s I~ | Start an IEx process with mix (=iex -S mix=) | | ~SPC m s l~ | Send current line to REPL buffer | | ~SPC m s L~ | Send current line to REPL buffer and focus it in =insert state= | +| ~SPC m s m~ | Reloads the module in the current buffer in your IEx process | | ~SPC m s r~ | Send region to REPL buffer | | ~SPC m s R~ | Send region to REPL buffer and focus it in =insert state= | -| ~SPC m s c~ | Compiles the current buffer in the IEx process. | ** Tests diff --git a/layers/+lang/elixir/packages.el b/layers/+lang/elixir/packages.el index 8fb9e1000..bf89d0399 100644 --- a/layers/+lang/elixir/packages.el +++ b/layers/+lang/elixir/packages.el @@ -66,13 +66,14 @@ "mx" 'alchemist-mix-run "mh" 'alchemist-mix-help + "sc" 'alchemist-iex-compile-this-buffer "si" 'alchemist-iex-run "sI" 'alchemist-iex-project-run "sl" 'alchemist-iex-send-current-line "sL" 'alchemist-iex-send-current-line-and-go + "sm" 'alchemist-iex-reload-module "sr" 'alchemist-iex-send-region "sR" 'alchemist-iex-send-region-and-go - "sc" 'alchemist-iex-compile-this-buffer "ta" 'alchemist-mix-test "tb" 'alchemist-mix-test-this-buffer