We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9084e08 commit 6f9263fCopy full SHA for 6f9263f
src/vs/workbench/contrib/interactiveSession/browser/actions/interactiveSessionActions.ts
@@ -212,9 +212,19 @@ export function registerInteractiveSessionActions() {
212
},
213
category: INTERACTIVE_SESSION_CATEGORY,
214
icon: Codicon.clearAll,
215
- f1: true
+ f1: true,
216
+ keybinding: {
217
+ weight: KeybindingWeight.WorkbenchContrib,
218
+ primary: KeyMod.WinCtrl | KeyCode.KeyL,
219
+ when: CONTEXT_IN_INTERACTIVE_SESSION,
220
+ mac: {
221
222
+ secondary: [KeyMod.CtrlCmd | KeyCode.KeyK]
223
+ }
224
225
});
226
}
227
+
228
async run(accessor: ServicesAccessor, ...args: any[]) {
229
const widgetService = accessor.get(IInteractiveSessionWidgetService);
230
0 commit comments