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