-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
130 lines (130 loc) · 4.06 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
{
"name": "rider-keybindnigs",
"displayName": "Rider Keybindnigs",
"description": "Port of Rider Keybindings",
"version": "0.0.1",
"engines": {
"vscode": "^1.42.0"
},
"categories": [
"Keymaps"
],
"contributes": {
"keybindings": [
// working
{
"key": "cmd+ctrl+1",
"command": "workbench.action.terminal.toggleTerminal"
},
{
"key": "cmd+d",
"command": "editor.action.duplicateSelection"
},
{
"key": "cmd+l",
"command": "editor.action.deleteLines"
},
{
"key": "cmd+k",
"command": "workbench.view.scm"
},
{
"key": "cmd+-",
"command": "workbench.action.navigateBack"
},
{
"key": "cmd+shift+-",
"command": "workbench.action.navigateForward"
},
{
"key": "f2",
"command": "renameFile",
"when": "explorerViewletVisible && filesExplorerFocus && !explorerResourceIsRoot && !explorerResourceReadonly && !inputFocus"
},
{
"key": "cmd+1",
"command": "workbench.view.explorer",
"when": "!explorerViewletFocus"
},
{
"key": "cmd+1",
"command": "workbench.action.toggleSidebarVisibility",
"when": "explorerViewletFocus"
},
{
"key": "cmd+4",
"command": "workbench.action.output.toggleOutput"
},
{
"key": "cmd+5",
"command": "workbench.debug.action.toggleRepl"
},
{
"key": "alt+f7",
"command": "references-view.find",
"when": "editorHasReferenceProvider"
},
{
"key": "cmd+n",
"command": "workbench.action.showAllSymbols"
},
{
"key": "cmd+f4",
"command": "workbench.action.closeActiveEditor"
},
{
"key": "cmd+b",
"command": "editor.action.revealDefinition",
"when": "editorHasDefinitionProvider && editorTextFocus && !isInEmbeddedEditor"
},
{
"key": "enter",
"command": "filesExplorer.openFilePreserveFocus",
"when": "explorerViewletVisible && filesExplorerFocus && !explorerResourceIsFolder && !inputFocus"
},
{
"key": "escape",
"command": "workbench.action.focusLastEditorGroup"
},
{
"key": "cmd+shift+s",
"command": "workbench.action.files.saveAll"
},
{
"key": "cmd+shift+n",
"command": "explorer.newFile"
},
{
"key": "shift+cmd+a",
"command": "workbench.action.showCommands"
},
// in progress
{
"key": "alt+enter",
"command": "editor.action.quickFix",
"when": "editorTextFocus"
},
{
"key": "cmd+alt+b",
"command": "editor.action.goToImplementation",
"when": "editorHasImplementationProvider && editorTextFocus && !isInEmbeddedEditor"
},
{
"key": "cmd+shift+k",
"command": "git.pushTo"
},
{
"key": "cmd+3",
"command": "workbench.action.findInFiles"
},
{
"key": "cmd+`",
"command": "workbench.action.switchWindow"
},
{
"key": "cmd+p",
"command": "editor.action.triggerParameterHints"
}
]
}
}