-
Notifications
You must be signed in to change notification settings - Fork 259
/
Default (OSX).sublime-keymap
44 lines (44 loc) · 1.51 KB
/
Default (OSX).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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[
{
"command": "anaconda_goto", "keys": ["ctrl+alt+g"], "context": [
{"key": "selector", "operator": "equal", "operand": "source.python"}
]
},
{
"command": "anaconda_find_usages", "keys": ["ctrl+alt+f"], "context": [
{"key": "selector", "operator": "equal", "operand": "source.python"}
]
},
{
"command": "anaconda_doc", "keys": ["ctrl+alt+d"], "context": [
{"key": "selector", "operator": "equal", "operand": "source.python"}
]
},
{
"command": "anaconda_auto_format", "keys": ["ctrl+alt+r"], "context": [
{"key": "selector", "operator": "equal", "operand": "source.python"}
]
},
{
"command": "anaconda_run_current_file_tests", "keys": ["ctrl+alt+t"], "context": [
{"key": "selector", "operator": "equal", "operand": "source.python"}
]
},
{
"command": "anaconda_run_current_test", "keys": ["ctrl+alt+shift+t"], "context": [
{"key": "selector", "operator": "equal", "operand": "source.python"}
]
},
{
"command": "anaconda_fill_funcargs", "keys": ["tab"], "context": [
{"key": "selector", "operator": "equal", "operand": "source.python"},
{"key": "anaconda_insert_funcargs"}
]
},
{
"command": "anaconda_fill_funcargs", "keys": ["ctrl+tab"], "args": {"all": true}, "context": [
{"key": "selector", "operator": "equal", "operand": "source.python"},
{"key": "anaconda_insert_funcargs"}
]
}
]