Skip to content

Commit

Permalink
Added support for F1-F24 hotkeys
Browse files Browse the repository at this point in the history
Fixes #1054
  • Loading branch information
oliverschwendener committed Nov 13, 2023
1 parent b9d65d4 commit 201ecf1
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions src/common/global-hot-key/global-hot-key-key.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,4 +42,28 @@ export enum GlobalHotKeyKey {
PageUp = "PageUp",
PageDown = "PageDown",
Escape = "Escape",
F1 = "F1",
F2 = "F2",
F3 = "F3",
F4 = "F4",
F5 = "F5",
F6 = "F6",
F7 = "F7",
F8 = "F8",
F9 = "F9",
F10 = "F10",
F11 = "F11",
F12 = "F12",
F13 = "F13",
F14 = "F14",
F15 = "F15",
F16 = "F16",
F17 = "F17",
F18 = "F18",
F19 = "F19",
F20 = "F20",
F21 = "F21",
F22 = "F22",
F23 = "F23",
F24 = "F24",
}

0 comments on commit 201ecf1

Please sign in to comment.