File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 ) ;
You can’t perform that action at this time.
0 commit comments