-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkeybindings.json
133 lines (133 loc) · 2.83 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
[
{
"key": "ctrl+shift+l",
"command": "workbench.action.editor.changeLanguageMode",
"when": "editorTextFocus"
},
{
"key": "shift+cmd+[Backslash]",
"command": "editor.emmet.action.matchTag",
"when": "editorTextFocus && editorLangId == html"
},
{
"key": "shift+cmd+[Backslash]",
"command": "editor.action.jumpToBracket",
"when": "editorTextFocus && editorLangId != html"
},
{
"key": "ctrl+shift+d",
"command": "editor.action.deleteLines",
"when": "editorTextFocus"
},
{
"key": "cmd+alt+s",
"command": "workbench.action.files.saveAll"
},
{
"key": "cmd+r",
"command": "workbench.action.gotoSymbol"
},
{
"key": "ctrl+-",
"command": "workbench.action.navigateBack"
},
{
"key": "ctrl+shift+-",
"command": "workbench.action.navigateForward"
},
{
"key": "ctrl+right",
"command": "editor.action.smartSelect.grow",
"when": "editorTextFocus"
},
{
"key": "ctrl+left",
"command": "editor.action.smartSelect.shrink",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+down",
"command": "editor.emmet.action.nextEditPoint"
},
{
"key": "ctrl+shift+up",
"command": "editor.emmet.action.prevEditPoint"
},
{
"key": "alt+cmd+[Period]",
"command": "auto-close-tag.closeTag"
},
{
"key": "ctrl+shift+alt+up",
"command": "editor.action.selectToBracket"
},
{
"key": "shift+cmd+n",
"command": "explorer.newFolder",
"when": "explorerViewletFocus && explorerViewletVisible"
},
{
"key": "cmd+n",
"command": "explorer.newFile",
"when": "explorerViewletFocus && explorerViewletVisible"
},
{
"key": "cmd+y",
"command": "editor.action.toggleRenderWhitespace",
"when": "editorTextFocus"
},
{
"key": "cmd+-",
"command": "editor.action.commentLine",
"when": "editorTextFocus"
},
{
"key": "ctrl+e",
"command": "-cursorLineEnd",
"when": "textInputFocus"
},
{
"key": "ctrl+e",
"command": "editor.action.marker.nextInFiles",
"when": "editorFocus && !editorReadonly"
},
{
"key": "ctrl+f",
"command": "-cursorRight",
"when": "textInputFocus"
},
{
"key": "ctrl+f",
"command": "references-view.find",
"when": "editorHasReferenceProvider"
},
{
"key": "ctrl+t",
"command": "-editor.action.transposeLetters",
"when": "textInputFocus && !editorReadonly"
},
{
"key": "ctrl+t",
"command": "editor.action.rename",
"when": "editorHasRenameProvider && editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+t",
"command": "editor.emmet.action.updateTag",
"when": "editorTextFocus && !editorReadonly && editorLangId == html"
},
{
"key": "shift+alt+cmd+k",
"command": "workbench.view.extension.bookmarks"
},
{
"key": "ctrl+d",
"command": "-deleteRight",
"when": "textInputFocus && !editorReadonly"
},
{
"key": "ctrl+d",
"command": "editor.action.revealDefinition",
"when": "editorHasDefinitionProvider && editorTextFocus && !isInEmbeddedEditor"
}
]