You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @param type The debug type for which the provider is registered.
10528
10544
* @param provider The [debug configuration provider](#DebugConfigurationProvider) to register.
10545
+
* @param scope The [scope](#DebugConfigurationProviderScope) for which the 'provideDebugConfiguration' method of the provider is registered. An error is thrown if the provider has no 'provideDebugConfiguration' method or if it has one of the 'resolveDebugConfiguration' methods.
10529
10546
* @return A [disposable](#Disposable) that unregisters this provider when being disposed.
description: nls.localize('vscode.extension.activationEvents.onDebugInitialConfigurations','An activation event emitted whenever a "launch.json" needs to be created (and all provideDebugConfigurations methods need to be called).'),
250
250
body: 'onDebugInitialConfigurations'
251
251
},
252
+
{
253
+
label: 'onDebugDynamicConfigurations',
254
+
description: nls.localize('vscode.extension.activationEvents.onDebugDynamicConfigurations','An activation event emitted whenever a list of all debug configurations needs to be created (and all provideDebugConfigurations methods for the "dynamic" scope need to be called).'),
255
+
body: 'onDebugDynamicConfigurations'
256
+
},
252
257
{
253
258
label: 'onDebugResolve',
254
259
description: nls.localize('vscode.extension.activationEvents.onDebugResolve','An activation event emitted whenever a debug session with the specific type is about to be launched (and a corresponding resolveDebugConfiguration method needs to be called).'),
0 commit comments