-
Notifications
You must be signed in to change notification settings - Fork 0
/
keybindings.json
67 lines (67 loc) · 1.5 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "shift+ctrl+o",
"command": "-workbench.action.gotoSymbol"
},
{
"key": "shift+ctrl+o",
"command": "projectManager.listProjects"
},
{
"key": "alt+ctrl+p",
"command": "-projectManager.listProjects"
},
{
"key": "shift+ctrl+a",
"command": "workbench.actions.view.problems"
},
{
"key": "shift+ctrl+z",
"command": "extension.vscode-git-automator.addAndCommitAllFiles"
},
{
"key": "ctrl+alt+n",
"command": "nightlight.toggle"
},
{
"key": "shift+ctrl+r",
"command": "HookyQR.beautify"
},
{
"key": "shift+ctrl+t",
"command": "clockify-projects.focus"
},
{
"key": "shift+ctrl+i",
"command": "cacher.insertSnippet",
"when": "editorTextFocus"
},
{
"key": "ctrl+[Minus]",
"command": "editor.action.fontZoomIn"
},
{
"key": "ctrl+-",
"command": "editor.action.fontZoomOut"
},
{
"key": "ctrl+0",
"command": "editor.action.fontZoomReset"
},
{
"key": "shift+ctrl+j",
"command": "extension.fileheader",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+alt+7",
"command": "editor.action.addCommentLine",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+k ctrl+c",
"command": "-editor.action.addCommentLine",
"when": "editorTextFocus && !editorReadonly"
}
]