|
2 | 2 | "name": "code-d", |
3 | 3 | "displayName": "D Programming Language (code-d)", |
4 | 4 | "description": "auto-complete, snippets, linter and formatter for dlang", |
5 | | - "version": "0.22.0", |
| 5 | + "version": "0.23.0-beta.3", |
6 | 6 | "publisher": "webfreak", |
7 | 7 | "repository": { |
8 | 8 | "type": "git", |
|
46 | 46 | "onCommand:code-d.addImport", |
47 | 47 | "onCommand:code-d.searchDocs", |
48 | 48 | "onCommand:code-d.openDocsAtCursor", |
49 | | - "onCommand:code-d.convertDubRecipe" |
| 49 | + "onCommand:code-d.convertDubRecipe", |
| 50 | + "onCommand:code-d.setupCompiler" |
50 | 51 | ], |
51 | 52 | "main": "./out/extension", |
52 | 53 | "keywords": [ |
|
1055 | 1056 | "command": "code-d.viewUserGuide", |
1056 | 1057 | "title": "Open User Guide / Documentation", |
1057 | 1058 | "category": "code-d" |
| 1059 | + }, |
| 1060 | + { |
| 1061 | + "command": "code-d.setupCompiler", |
| 1062 | + "title": "Setup D Compiler", |
| 1063 | + "category": "code-d" |
1058 | 1064 | } |
1059 | 1065 | ], |
1060 | 1066 | "jsonValidation": [ |
|
1184 | 1190 | ], |
1185 | 1191 | "walkthroughs": [ |
1186 | 1192 | { |
1187 | | - "id": "code-d.welcome", |
| 1193 | + "id": "welcome", |
1188 | 1194 | "title": "Get Started with D Development", |
1189 | 1195 | "description": "Setup your development experience for the D programming language.", |
1190 | 1196 | "steps": [ |
1191 | 1197 | { |
1192 | | - "id": "code-d.welcome.installCompiler", |
1193 | | - "title": "Install and choose a D compiler (DMD, LDC or GCC)", |
1194 | | - "description": "Run the 'Setup D Compiler' command to choose which D compiler to use with code-d and DUB. You can find available compilers on https://dlang.org/download.html", |
| 1198 | + "id": "welcome.installCompiler", |
| 1199 | + "title": "Install and choose a D compiler (DMD, LDC or GDC)", |
| 1200 | + "description": "Run the 'Setup D Compiler' command to choose which D compiler to use with code-d and DUB. You can find available compilers on [https://dlang.org/download.html](https://dlang.org/download.html)\n[Setup D Compiler](command:code-d.setupCompiler)", |
1195 | 1201 | "completionEvents": [ |
1196 | 1202 | "onCommand:code-d.setupCompiler" |
1197 | 1203 | ], |
|
1200 | 1206 | } |
1201 | 1207 | }, |
1202 | 1208 | { |
1203 | | - "id": "code-d.welcome.userSettings", |
| 1209 | + "id": "welcome.userSettings", |
1204 | 1210 | "title": "Configure code-d", |
1205 | 1211 | "description": "Review some common user settings", |
1206 | 1212 | "media": { |
1207 | 1213 | "markdown": "res/walkthroughs/userSettings.md" |
1208 | 1214 | } |
1209 | 1215 | }, |
1210 | 1216 | { |
1211 | | - "id": "code-d.welcome.checkUserGuide", |
1212 | | - "title": "Check out user guide", |
1213 | | - "description": "The included code-d user guide contains tutorials and a description on all features of code-d. Make sure you read it!", |
| 1217 | + "id": "welcome.checkUserGuide", |
| 1218 | + "title": "Check out the user guide", |
| 1219 | + "description": "The included code-d user guide contains tutorials and a description on all features of code-d. Make sure you read it!\n[Open User Guide / Documentation](command:code-d.viewUserGuide)", |
1214 | 1220 | "completionEvents": [ |
1215 | | - "onCommand:code-d.viewUserGuide" |
1216 | | - ] |
| 1221 | + "onCommand:code-d.viewUserGuide", |
| 1222 | + "onStepSelected" |
| 1223 | + ], |
| 1224 | + "media": { |
| 1225 | + "markdown": "docs/index.md" |
| 1226 | + } |
1217 | 1227 | }, |
1218 | 1228 | { |
1219 | | - "id": "code-d.welcome.debugProject", |
| 1229 | + "id": "welcome.debugProject", |
1220 | 1230 | "title": "Run and Debug your first project", |
1221 | 1231 | "description": "Code-D includes debugging plugins to improve the D debugging experience. Get started with a project and debug it from code-d.", |
1222 | 1232 | "media": { |
|
0 commit comments