We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28520b8 commit 7c5e080Copy full SHA for 7c5e080
1 file changed
src/vs/workbench/contrib/debug/browser/debugCommands.ts
@@ -184,7 +184,7 @@ export function registerCommands(): void {
184
id: STEP_INTO_ID,
185
weight: KeybindingWeight.WorkbenchContrib + 10, // Have a stronger weight to have priority over full screen when debugging
186
primary: KeyCode.F11,
187
- when: CONTEXT_DEBUG_STATE.isEqualTo('stopped'),
+ when: CONTEXT_IN_DEBUG_MODE,
188
handler: (accessor: ServicesAccessor, _: string, thread: IThread | undefined) => {
189
getThreadAndRun(accessor, thread, thread => thread.stepIn());
190
}
0 commit comments