forked from maltize/sublime-text-2-ruby-tests
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDefault (Linux).sublime-keymap
16 lines (14 loc) · 1013 Bytes
/
Default (Linux).sublime-keymap
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[
{ "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
{ "keys": ["ctrl+shift+c"], "command": "generate_file" } // create new file
]