Skip to content

Commit 4e138ef

Browse files
committed
Allow shift + arrows for prev/next sections
1 parent d281b4e commit 4e138ef

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

apps/lite/ui/src/routes/project/$id/workspace/-WorkspaceShortcuts.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,13 +74,13 @@ const selectionBindings: Array<ShortcutBinding<SelectionAction>> = [
7474
{
7575
id: "previous-section",
7676
description: "Previous section",
77-
keys: ["Shift+k"],
77+
keys: ["Shift+ArrowUp", "Shift+k"],
7878
action: { _tag: "PreviousSection" },
7979
},
8080
{
8181
id: "next-section",
8282
description: "Next section",
83-
keys: ["Shift+j"],
83+
keys: ["Shift+ArrowDown", "Shift+j"],
8484
action: { _tag: "NextSection" },
8585
},
8686
togglePreviewBinding,

0 commit comments

Comments
 (0)