forked from maltize/sublime-text-2-ruby-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDefault (Linux).sublime-keymap
More file actions
15 lines (13 loc) · 934 Bytes
/
Default (Linux).sublime-keymap
File metadata and controls
15 lines (13 loc) · 934 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
[
{ "keys": ["ctrl+shift+r"], "command": "run_single_ruby_test" }, // single test
{ "keys": ["ctrl+shift+t"], "command": "run_all_ruby_test" }, // test file
{ "keys": ["ctrl+shift+e"], "command": "run_last_ruby_test" }, // test file
{ "keys": ["ctrl+shift+x"], "command": "show_test_panel" }, // show test panel
{ "keys": ["alt+shift+v"], "command": "verify_ruby_file" }, // verify ruby syntax
{ "keys": ["ctrl+period"], "command": "switch_between_code_and_test", "args": {"split_view": false}, "context" : [
{ "key": "selector", "operator": "equal", "operand": "source.ruby", "match_all": true }
]}, // switch between code and test in single view
{ "keys": ["ctrl+shift+period"], "command": "switch_between_code_and_test", "args": {"split_view": true}, "context" : [
{ "key": "selector", "operator": "equal", "operand": "source.ruby", "match_all": true }
]} // switch between code and test in split view
]