-
Notifications
You must be signed in to change notification settings - Fork 0
/
Default (Linux).sublime-keymap
27 lines (27 loc) · 1.14 KB
/
Default (Linux).sublime-keymap
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[
{
/* Launches various scripts depending on which file is open:
meta.json: generateOutputs
<task>.<ext>: validate current snippet
README.md: validate all snippets */
"keys": ["ctrl+shift+c"], "command": "code_fights", "args": {"generateOutputs": true, "validate": true, "generateTests": true}
},
{
/* Kills current process */
"keys": ["ctrl+d"], "command": "code_fights", "args": {"kill": true}
},
{
/* Launches various scripts depending on which file is open:
<task>.py: automaticalBugfixes
README.md: getLimits */
"keys": ["ctrl+shift+m"], "command": "code_fights", "args": {"autoBugfixes": true, "autoBugfixes_validate": true,
"getLimits": true,
"update_limits": true}
},
{
/* Lunches style checker:
<task>.<ext>: current snippet
README.md: all snippets */
"keys": ["ctrl+shift+h"], "command": "code_fights", "args": {"styleChecker": true}
}
]