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
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -51,9 +51,9 @@ export const CONTEXT_IN_DEBUG_REPL = new RawContextKey<boolean>('inDebugRepl', f
51
51
exportconstCONTEXT_BREAKPOINT_WIDGET_VISIBLE=newRawContextKey<boolean>('breakpointWidgetVisible',false,{type: 'boolean',description: nls.localize('breakpointWidgetVisibile',"True when breakpoint editor zone widget is visible, false otherwise.")});
52
52
exportconstCONTEXT_IN_BREAKPOINT_WIDGET=newRawContextKey<boolean>('inBreakpointWidget',false,{type: 'boolean',description: nls.localize('inBreakpointWidget',"True when focus is in the breakpoint editor zone widget, false otherwise.")});
53
53
exportconstCONTEXT_BREAKPOINTS_FOCUSED=newRawContextKey<boolean>('breakpointsFocused',true,{type: 'boolean',description: nls.localize('breakpointsFocused',"True when the BREAKPOINTS view is focused, false otherwise.")});
54
-
exportconstCONTEXT_WATCH_EXPRESSIONS_FOCUSED=newRawContextKey<boolean>('watchExpressionsFocused',true,{type: 'boolean',description: nls.localize('watchExpressionsFocused',"True when the WATCH view is focused, false otherwsie.")});
54
+
exportconstCONTEXT_WATCH_EXPRESSIONS_FOCUSED=newRawContextKey<boolean>('watchExpressionsFocused',true,{type: 'boolean',description: nls.localize('watchExpressionsFocused',"True when the WATCH view is focused, false otherwise.")});
55
55
exportconstCONTEXT_WATCH_EXPRESSIONS_EXIST=newRawContextKey<boolean>('watchExpressionsExist',false,{type: 'boolean',description: nls.localize('watchExpressionsExist',"True when at least one watch expression exists, false otherwise.")});
56
-
exportconstCONTEXT_VARIABLES_FOCUSED=newRawContextKey<boolean>('variablesFocused',true,{type: 'boolean',description: nls.localize('variablesFocused',"True when the VARIABLES views is focused, false otherwsie")});
56
+
exportconstCONTEXT_VARIABLES_FOCUSED=newRawContextKey<boolean>('variablesFocused',true,{type: 'boolean',description: nls.localize('variablesFocused',"True when the VARIABLES views is focused, false otherwise")});
57
57
exportconstCONTEXT_EXPRESSION_SELECTED=newRawContextKey<boolean>('expressionSelected',false,{type: 'boolean',description: nls.localize('expressionSelected',"True when an expression input box is open in either the WATCH or the VARIABLES view, false otherwise.")});
58
58
exportconstCONTEXT_BREAKPOINT_INPUT_FOCUSED=newRawContextKey<boolean>('breakpointInputFocused',false,{type: 'boolean',description: nls.localize('breakpointInputFocused',"True when the input box has focus in the BREAKPOINTS view.")});
59
59
exportconstCONTEXT_CALLSTACK_ITEM_TYPE=newRawContextKey<string>('callStackItemType',undefined,{type: 'string',description: nls.localize('callStackItemType',"Represents the item type of the focused element in the CALL STACK view. For example: 'session', 'thread', 'stackFrame'")});
@@ -72,7 +72,7 @@ export const CONTEXT_FOCUSED_SESSION_IS_ATTACH = new RawContextKey<boolean>('foc
72
72
exportconstCONTEXT_FOCUSED_SESSION_IS_NO_DEBUG=newRawContextKey<boolean>('focusedSessionIsNoDebug',false,{type: 'boolean',description: nls.localize('focusedSessionIsNoDebug',"True when the focused session is run without debugging.")});
73
73
exportconstCONTEXT_STEP_BACK_SUPPORTED=newRawContextKey<boolean>('stepBackSupported',false,{type: 'boolean',description: nls.localize('stepBackSupported',"True when the focused session supports 'stepBack' requests.")});
74
74
exportconstCONTEXT_RESTART_FRAME_SUPPORTED=newRawContextKey<boolean>('restartFrameSupported',false,{type: 'boolean',description: nls.localize('restartFrameSupported',"True when the focused session supports 'restartFrame' requests.")});
75
-
exportconstCONTEXT_STACK_FRAME_SUPPORTS_RESTART=newRawContextKey<boolean>('stackFrameSupportsRestart',false,{type: 'boolean',description: nls.localize('stackFrameSupportsRestart',"True when the focused stack frame suppots 'restartFrame'.")});
75
+
exportconstCONTEXT_STACK_FRAME_SUPPORTS_RESTART=newRawContextKey<boolean>('stackFrameSupportsRestart',false,{type: 'boolean',description: nls.localize('stackFrameSupportsRestart',"True when the focused stack frame supports 'restartFrame'.")});
76
76
exportconstCONTEXT_JUMP_TO_CURSOR_SUPPORTED=newRawContextKey<boolean>('jumpToCursorSupported',false,{type: 'boolean',description: nls.localize('jumpToCursorSupported',"True when the focused session supports 'jumpToCursor' request.")});
77
77
exportconstCONTEXT_STEP_INTO_TARGETS_SUPPORTED=newRawContextKey<boolean>('stepIntoTargetsSupported',false,{type: 'boolean',description: nls.localize('stepIntoTargetsSupported',"True when the focused session supports 'stepIntoTargets' request.")});
78
78
exportconstCONTEXT_BREAKPOINTS_EXIST=newRawContextKey<boolean>('breakpointsExist',false,{type: 'boolean',description: nls.localize('breakpointsExist',"True when at least one breakpoint exists.")});
0 commit comments