From c0aa93afc7b6e9484c1207dda07e42a7d8032057 Mon Sep 17 00:00:00 2001 From: Maarten Jacobs Date: Fri, 2 Feb 2018 12:01:45 +0100 Subject: [PATCH] update keymap to not override default commands --- Default.sublime-keymap | 11 +++-------- README.md | 6 +++--- 2 files changed, 6 insertions(+), 11 deletions(-) diff --git a/Default.sublime-keymap b/Default.sublime-keymap index b7a8191..39ea3e1 100644 --- a/Default.sublime-keymap +++ b/Default.sublime-keymap @@ -1,20 +1,15 @@ [ - { "keys": ["super+shift+r"], "command": "run_single_elixir_test", + { "keys": ["ctrl+super+shift+r"], "command": "run_single_elixir_test", "context": [ { "key": "selector", "operator": "equal", "operand": "source.elixir, source.rspec, text.gherkin.feature" } ] }, // single test - - - { "keys": ["super+shift+t"], "command": "run_all_elixir_test", + { "keys": ["ctrl+super+shift+t"], "command": "run_all_elixir_test", "context": [ { "key": "selector", "operator": "equal", "operand": "source.elixir, source.rspec, text.gherkin.feature" } ] }, // test file - - - { "keys": ["super+shift+e"], "command": "run_last_elixir_test" }, // test last test file - + { "keys": ["ctrl+super+shift+e"], "command": "run_last_elixir_test" }, // test last test file { "keys": ["super+shift+x"], "command": "show_test_panel" }, // show test panel { "keys": ["super+."], diff --git a/README.md b/README.md index 9f8f40f..340004b 100644 --- a/README.md +++ b/README.md @@ -48,9 +48,9 @@ Make a copy of `ElixirTest.sublime-settings` file to `~/Library/Application\ Sup Usage ----- - - Run single elixir test: `Command-Shift-R` - - Run all elixir tests from current file: `Command-Shift-T` - - Run last elixir test(s): `Command-Shift-E` + - Run single elixir test: `Ctrl-Command-Shift-R` + - Run all elixir tests from current file: `Ctrl-Command-Shift-T` + - Run last elixir test(s): `Ctrl-Command-Shift-E` - Show test panel: `Command-Shift-X` (when test panel visible hit `esc` to hide it) - Switching between code and test (create a file if not found): - Single View: `Command-.`