From b286548e2cbb4f68f57b305f1686ec7e63226663 Mon Sep 17 00:00:00 2001 From: Eddy Ernesto del Valle Pino Date: Sat, 3 Jun 2017 14:51:50 +0200 Subject: [PATCH] Improve commands. --- Default.sublime-commands | 4 ++++ Default.sublime-keymap | 7 ++++--- 2 files changed, 8 insertions(+), 3 deletions(-) create mode 100644 Default.sublime-commands diff --git a/Default.sublime-commands b/Default.sublime-commands new file mode 100644 index 0000000..7b9bd01 --- /dev/null +++ b/Default.sublime-commands @@ -0,0 +1,4 @@ +[ + { "caption": "Elixir: Navigate through modules", "command": "super_elixir_navigate_modules" }, + { "caption": "Elixir: Go to definition", "command": "super_elixir_goto" }, +] diff --git a/Default.sublime-keymap b/Default.sublime-keymap index 9d35a4e..5247173 100644 --- a/Default.sublime-keymap +++ b/Default.sublime-keymap @@ -1,13 +1,14 @@ [ - {"command": "super_elixir_goto", "keys": ["ctrl+shift+g"], + { + "command": "super_elixir_goto", + "keys": ["ctrl+shift+g"], "context": [ {"key": "selector", "operator": "equal", "operand": "source.elixir - string - comment"} ] }, { - "caption": "Elixir: Navigate modules", "command": "super_elixir_navigate_modules", - "keys": ["ctrl+shift+l"], + "keys": ["ctrl+alt+m"], "context": [ {"key": "selector", "operator": "equal", "operand": "source.elixir - string - comment"} ]