Skip to content

Commit eccf417

Browse files
committed
outline nav - only bind keys on mac
1 parent 4e8ef4c commit eccf417

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/vs/workbench/contrib/outline/browser/outlineNavigation.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ registerEditorAction(class extends EditorAction {
164164
kbOpts: {
165165
weight: KeybindingWeight.EditorContrib,
166166
kbExpr: EditorContextKeys.focus,
167-
primary: KeyMod.Shift | KeyMod.Alt | KeyCode.DownArrow,
167+
primary: undefined,
168168
mac: {
169169
primary: KeyMod.WinCtrl | KeyMod.Shift | KeyCode.DownArrow,
170170
},
@@ -188,7 +188,7 @@ registerEditorAction(class extends EditorAction {
188188
kbOpts: {
189189
weight: KeybindingWeight.EditorContrib,
190190
kbExpr: EditorContextKeys.focus,
191-
primary: KeyMod.Shift | KeyMod.Alt | KeyCode.UpArrow,
191+
primary: undefined,
192192
mac: {
193193
primary: KeyMod.WinCtrl | KeyMod.Shift | KeyCode.UpArrow,
194194
},

0 commit comments

Comments
 (0)