-
Notifications
You must be signed in to change notification settings - Fork 0
/
keybindings.json
51 lines (51 loc) · 1.14 KB
/
keybindings.json
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
45
46
47
48
49
50
51
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "shift+f7",
"command": "python.runCurrentTestFile"
},
{
"key": "f7",
"command": "python.runtests"
},
{
"key": "ctrl+cmd+f",
"command": "editor.action.smartSelect.grow",
"when": "editorTextFocus"
},
{
"key": "ctrl+cmd+b",
"command": "editor.action.smartSelect.shrink",
"when": "editorTextFocus"
},
{
"key": "cmd+k cmd+k",
"command": "editor.foldAll",
"when": "editorTextFocus"
},
{
"key": "cmd+k k",
"command": "editor.fold",
"when": "editorTextFocus"
},
{
"key": "cmd+k j",
"command": "editor.unfoldRecursively",
"when": "editorTextFocus"
},
{
"key": "cmd+k cmd+g",
"command": "cursorBottom",
"when": "editorTextFocus"
},
{
"key": "cmd+k g",
"command": "cursorTop",
"when": "editorTextFocus"
},
{
"key": "cmd+j",
"command": "workbench.action.focusPanel",
"when": "editorTextFocus"
}
]