Skip to content

Commit 8c62e56

Browse files
flush out comment
1 parent 15de599 commit 8c62e56

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/extension.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ export async function activate(context: vscode.ExtensionContext): Promise<void>
234234
}));
235235

236236

237-
/** Start of commands that shouldn't be exposed in package.json */
237+
/** Start of commands that shouldn't be exposed in package.json, they are used for command substitution in launch.json and tasks.json. */
238238
context.subscriptions.push(vscode.commands.registerCommand('makefile.getLaunchTargetPath', () => {
239239
telemetry.logEvent("getLaunchTargetPath");
240240
return launcher.getLaunchTargetPath();
@@ -274,7 +274,7 @@ export async function activate(context: vscode.ExtensionContext): Promise<void>
274274
telemetry.logEvent("makeBaseDirectory");
275275
return configuration.makeBaseDirectory();
276276
}));
277-
/** End of commands that shouldn't be exposed in package.json */
277+
/** End of commands that shouldn't be exposed in package.json, they are used for command substitution in launch.json and tasks.json. */
278278

279279
context.subscriptions.push(vscode.commands.registerCommand('makefile.configure', async () => {
280280
await make.configure(make.TriggeredBy.configure);

0 commit comments

Comments
 (0)