提交 345f5ed4 编写于 作者: I isidor

fixes #6438

上级 209f43a5
......@@ -124,7 +124,8 @@ KeybindingsRegistry.registerCommandDesc({
.then(() => debugService.createSession(false));
}
return debugService.createSession(!!configuration.noDebug, configuration);
const noDebug = configuration && !!configuration.noDebug;
return debugService.createSession(noDebug, configuration);
},
when: KbExpr.not(debug.CONTEXT_IN_DEBUG_MODE),
primary: undefined
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册