-
Notifications
You must be signed in to change notification settings - Fork 109
/
Default.sublime-keymap
24 lines (24 loc) · 1021 Bytes
/
Default.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
[
{"command": "sublime_jedi_goto", "keys": ["ctrl+shift+g"],
"context": [
{"key": "selector", "operator": "equal", "operand": "source.python - string - comment"}
]
},
{"command": "sublime_jedi_find_usages", "keys": ["alt+shift+f"],
"context": [
{"key": "selector", "operator": "equal", "operand": "source.python - string - comment"}
]
},
{"command": "sublime_jedi_params_autocomplete", "keys": ["("],
"context": [
{"key": "selector", "operator": "equal", "operand": "source.python - string - comment"},
{"key": "selection_empty", "operator": "equal", "operand": true, "match_all": true},
{"key": "following_text", "operator": "regex_match", "operand": "^($| )", "match_all": true}
]
},
{"command": "sublime_jedi_docstring", "keys": ["alt+ctrl+d"],
"context": [
{"key": "selector", "operator": "equal", "operand": "source.python - string - comment"}
]
}
]