-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
152 lines (152 loc) · 3.95 KB
/
package.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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
{
"name": "netbeans-keybindings",
"displayName": "Netbeans Keymaps",
"description": "Bring Netbeans default keymap to VS Code.",
"version": "0.0.8",
"publisher": "grogdunn",
"engines": {
"vscode": "^1.9.0"
},
"categories": [
"Keymaps"
],
"keywords": [
"keymap"
],
"preview": false,
"icon": "netbeans.png",
"repository": {
"type": "git",
"url": "https://github.com/Grogdunn/vscode-nb-keybinding"
},
"bugs": {
"url": "https://github.com/Grogdunn/vscode-nb-keybinding/issues"
},
"contributes": {
"keybindings": [
{
"key": "alt+shift+f",
"command": "editor.action.format",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+c",
"command": "editor.action.commentLine",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+e",
"command": "editor.action.deleteLines",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+down",
"command": "editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+up",
"command": "editor.action.copyLinesUpAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "alt+shift+down",
"command": "editor.action.moveLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "alt+shift+up",
"command": "editor.action.moveLinesUpAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+1",
"command": "workbench.view.explorer"
},
{
"key": "ctrl+shift+1",
"command": "workbench.files.action.focusOpenEditorsView"
},
{
"key": "ctrl+u u",
"command": "editor.action.transformToUppercase",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+u l",
"command": "editor.action.transformToLowercase",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+0",
"command": "workbench.action.focusActiveEditorGroup"
},
{
"key": "alt+up",
"command": "editor.action.insertCursorAbove",
"when": "editorTextFocus"
},
{
"key": "alt+down",
"command": "editor.action.insertCursorBelow",
"when": "editorTextFocus"
},
{
"command": "editor.fold",
"key": "ctrl+numpad_subtract",
"when": "editorTextFocus"
},
{
"command": "editor.unfold",
"key": "ctrl+numpad_add",
"when": "editorTextFocus"
},
{
"command": "editor.foldAll",
"key": "ctrl+shift+numpad_subtract",
"when": "editorTextFocus"
},
{
"command": "editor.unfoldAll",
"key": "ctrl+shift+numpad_add",
"when": "editorTextFocus"
},
{
"command": "workbench.action.closeWindow",
"key": ""
},
{
"command": "workbench.action.closeEditorsInGroup",
"key": "ctrl+shift+w"
},
{
"key": "alt+shift+o",
"command": "workbench.action.quickOpen"
},
{
"key": "ctrl+o",
"command": "workbench.action.showAllSymbols"
},
{
"key": "ctrl+shift+i",
"command": "editor.action.organizeImports",
"when": "editorTextFocus && !editorReadonly && supportedCodeAction =~ /(\\s|^)source\\.organizeImports\\b/"
},
{
"key": "alt+left",
"command": "workbench.action.navigateBack",
"when": "canNavigateBack"
},
{
"key": "alt+right",
"command": "workbench.action.navigateForward",
"when": "canNavigateForward"
},
{
"key": "ctrl+r",
"command": "editor.action.rename",
"when": "editorHasRenameProvider && editorTextFocus && !editorReadonly"
}
]
}
}