Skip to content

Commit 2c39600

Browse files
committed
v0.10.0
1 parent 51b9657 commit 2c39600

File tree

7 files changed

+2051
-1107
lines changed

7 files changed

+2051
-1107
lines changed

.vscode/keybindings.json

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
// Place your key bindings in this file to override the defaultsauto[]
2+
[
3+
{
4+
"key": "shift+alt+ctrl+right",
5+
"command": "workbench.action.toggleAuxiliaryBar"
6+
},
7+
{
8+
"key": "shift+alt+ctrl+down",
9+
"command": "workbench.action.togglePanel"
10+
},
11+
{
12+
"key": "ctrl+j",
13+
"command": "-workbench.action.togglePanel"
14+
},
15+
{
16+
"key": "shift+alt+ctrl+up",
17+
"command": "workbench.action.toggleMaximizedPanel"
18+
},
19+
{
20+
"key": "shift+alt+ctrl+left",
21+
"command": "workbench.action.toggleSidebarVisibility"
22+
},
23+
{
24+
"key": "ctrl+b",
25+
"command": "-workbench.action.toggleSidebarVisibility"
26+
},
27+
{
28+
"key": "f5",
29+
"command": "workbench.action.tasks.build",
30+
"when": "taskCommandsRegistered"
31+
},
32+
{
33+
"key": "ctrl+shift+b",
34+
"command": "-workbench.action.tasks.build",
35+
"when": "taskCommandsRegistered"
36+
},
37+
{
38+
"key": "alt+j",
39+
"command": "debug.startFromConfig",
40+
"args": {
41+
"type": "node",
42+
"request": "launch",
43+
"name": "Launch Program",
44+
"program": "${fileDirname}/${fileBasename}",
45+
"console": "integratedTerminal"
46+
}
47+
},
48+
{
49+
"key": "ctrl+f5",
50+
"command": "debug.startFromConfig",
51+
"args": {
52+
"type": "extensionHost",
53+
"request": "launch",
54+
"args": [
55+
"--extensionDevelopmentPath=${workspaceFolder}"
56+
],
57+
"preLaunchTask": "npm: esbuild",
58+
"name": "Run Extension"
59+
}
60+
}
61+
]

0 commit comments

Comments
 (0)