-
Notifications
You must be signed in to change notification settings - Fork 259
/
Default (Windows).sublime-keymap
28 lines (28 loc) · 1.14 KB
/
Default (Windows).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
[
{
"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_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"}
]}
]