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
Copy file name to clipboardExpand all lines: src/vs/workbench/contrib/debug/common/debug.ts
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -71,6 +71,7 @@ export const CONTEXT_JUMP_TO_CURSOR_SUPPORTED = new RawContextKey<boolean>('jump
71
71
exportconstCONTEXT_STEP_INTO_TARGETS_SUPPORTED=newRawContextKey<boolean>('stepIntoTargetsSupported',false,{type: 'boolean',description: nls.localize('stepIntoTargetsSupported',"True when the focused session supports 'stepIntoTargets' request.")});
72
72
exportconstCONTEXT_BREAKPOINTS_EXIST=newRawContextKey<boolean>('breakpointsExist',false,{type: 'boolean',description: nls.localize('breakpointsExist',"True when at least one breakpoint exists.")});
73
73
exportconstCONTEXT_DEBUGGERS_AVAILABLE=newRawContextKey<boolean>('debuggersAvailable',false,{type: 'boolean',description: nls.localize('debuggersAvailable',"True when there is at least one debug extensions active.")});
74
+
exportconstCONTEXT_DEBUG_EXTENSION_AVAILABLE=newRawContextKey<boolean>('debugExtensionAvailable',false,{type: 'boolean',description: nls.localize('debugExtensionsAvailable',"True when there is at least one debug extension installed and enabled.")});
74
75
exportconstCONTEXT_DEBUG_PROTOCOL_VARIABLE_MENU_CONTEXT=newRawContextKey<string>('debugProtocolVariableMenuContext',undefined,{type: 'string',description: nls.localize('debugProtocolVariableMenuContext',"Represents the context the debug adapter sets on the focused variable in the VARIABLES view.")});
75
76
exportconstCONTEXT_SET_VARIABLE_SUPPORTED=newRawContextKey<boolean>('debugSetVariableSupported',false,{type: 'boolean',description: nls.localize('debugSetVariableSupported',"True when the focused session supports 'setVariable' request.")});
76
77
exportconstCONTEXT_SET_EXPRESSION_SUPPORTED=newRawContextKey<boolean>('debugSetExpressionSupported',false,{type: 'boolean',description: nls.localize('debugSetExpressionSupported',"True when the focused session supports 'setExpression' request.")});
0 commit comments