diff --git a/src/App.svelte b/src/App.svelte index b4a7cf3..4ec8d17 100644 --- a/src/App.svelte +++ b/src/App.svelte @@ -16,6 +16,9 @@ ) { $actions.undo(e); } + if (e.key === "F1" && $actions.help !== undefined) { + $actions.help(e); + } };