From 0c18d5afea9eb253cfe484a5709e383724c680db Mon Sep 17 00:00:00 2001 From: syl20bnr Date: Tue, 17 Feb 2015 22:11:41 -0500 Subject: [PATCH] Update elixir `mi` to `msi` for inferior process According to conventions --- contrib/lang/erlang-elixir/packages.el | 52 +++++++++++++++----------- 1 file changed, 30 insertions(+), 22 deletions(-) diff --git a/contrib/lang/erlang-elixir/packages.el b/contrib/lang/erlang-elixir/packages.el index 8d9ea7801..06212547e 100644 --- a/contrib/lang/erlang-elixir/packages.el +++ b/contrib/lang/erlang-elixir/packages.el @@ -26,34 +26,42 @@ which require an initialization must be listed explicitly in the list.") (add-hook 'elixir-mode-hook 'alchemist-mode) (setq alchemist-project-compile-when-needed t) (evil-leader/set-key-for-mode 'elixir-mode - "mm:" 'alchemist-mix - "mta" 'alchemist-mix-test - "mtb" 'alchemist-mix-test-this-buffer - "mtt" 'alchemist-mix-test-at-point - "mmc" 'alchemist-mix-compile - "mmx" 'alchemist-mix-run - "mmh" 'alchemist-mix-help - "mgt" 'alchemist-project-open-tests-for-current-file "mcb" 'alchemist-compile-this-buffer - "mxb" 'alchemist-execute-this-buffer - "mxf" 'alchemist-execute-file - "mx:" 'alchemist-execute - "mh:" 'alchemist-help - "mhH" 'alchemist-help-history - "mhh" 'alchemist-help-search-at-point - "mhr" 'alchemist-help-search-marked-region - "mi" 'alchemist-iex-run - "mmi" 'alchemist-iex-project-run - "msl" 'alchemist-iex-send-current-line - "msL" 'alchemist-iex-send-current-line-and-go - "msr" 'alchemist-iex-send-region - "msR" 'alchemist-iex-send-region-and-go + "mel" 'alchemist-eval-current-line "meL" 'alchemist-eval-print-current-line "mer" 'alchemist-eval-region "meR" 'alchemist-eval-print-region "meb" 'alchemist-eval-buffer - "meB" 'alchemist-eval-print-buffer)) + "meB" 'alchemist-eval-print-buffer + + "mgt" 'alchemist-project-open-tests-for-current-file + + "mh:" 'alchemist-help + "mhH" 'alchemist-help-history + "mhh" 'alchemist-help-search-at-point + "mhr" 'alchemist-help-search-marked-region + + "mm:" 'alchemist-mix + "mmc" 'alchemist-mix-compile + "mmx" 'alchemist-mix-run + "mmh" 'alchemist-mix-help + "mmi" 'alchemist-iex-project-run + + "msi" 'alchemist-iex-run + "msl" 'alchemist-iex-send-current-line + "msL" 'alchemist-iex-send-current-line-and-go + "msr" 'alchemist-iex-send-region + "msR" 'alchemist-iex-send-region-and-go + + "mta" 'alchemist-mix-test + "mtb" 'alchemist-mix-test-this-buffer + "mtt" 'alchemist-mix-test-at-point + + "mxb" 'alchemist-execute-this-buffer + "mxf" 'alchemist-execute-file + "mx:" 'alchemist-execute + )) (defun erlang-elixir/init-edts ()