From 3a57abc42304ee5d4459366522ec6bddd843ace6 Mon Sep 17 00:00:00 2001 From: koehr Date: Thu, 2 Apr 2020 14:27:29 +0200 Subject: [PATCH] add home/end/pageup/pagedown keys to menu sync --- src/editor/constants.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/editor/constants.ts b/src/editor/constants.ts index 10146f6..2891990 100644 --- a/src/editor/constants.ts +++ b/src/editor/constants.ts @@ -5,7 +5,11 @@ export const movementKeys = [ 'ArrowDown', 'Delete', 'Backspace', - 'Enter' + 'Enter', + 'Home', + 'End', + 'PageUp', + 'PageDown' ] export const controlSequenceKeys = ['p', 'x', 'y', 'z', 'Z']