-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvs_code_keybindings.json
More file actions
56 lines (56 loc) · 1.47 KB
/
vs_code_keybindings.json
File metadata and controls
56 lines (56 loc) · 1.47 KB
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
52
53
54
55
56
// Place your key bindings in this file to overwrite the defaults
[
{ "key": "ctrl+k ctrl+d",
"command": "editor.action.formatDocument",
"when": "editorHasDocumentFormattingProvider && editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+t",
"command": "workbench.action.terminal.toggleTerminal"
},
{
"key": "ctrl+oem_minus",
"command": "workbench.action.navigateBack"
},
{
"key": "ctrl+shift+oem_minus",
"command": "workbench.action.navigateForward"
},
{
"key": "ctrl+k ctrl+m",
"command": "editor.foldAll",
"when": "editorFocus"
},
{
"key": "ctrl+m ctrl+k",
"command": "editor.unfoldAll",
"when": "editorFocus"
},
{
"key": "ctrl+t ctrl+l",
"command": "editor.action.transformToLowercase"
},
{
"key": "ctrl+t ctrl+u",
"command": "editor.action.transformToUppercase"
},
/* vs code: ext install camelcasenavigation */
{
"key": "alt+right",
"command": "extension.moveCamelRightCommand",
"when": "editorTextFocus"
},
{
"key": "ctrl+right",
"command": "-extension.moveCamelRightCommand",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+j",
"command": "workbench.action.terminal.focusNext"
},
{
"key": "ctrl+shift+k",
"command": "workbench.action.terminal.focusPrevious"
}
]