From 85a23d8352d5f23e5214d5d7bee54fbf0cb1375c Mon Sep 17 00:00:00 2001 From: Simon Cambier Date: Thu, 27 Jun 2024 20:33:49 +0200 Subject: [PATCH] #380 - Replaced alt+o with ctrl+o for "open in background" --- src/components/modals.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/modals.ts b/src/components/modals.ts index e439866..a4ecd41 100644 --- a/src/components/modals.ts +++ b/src/components/modals.ts @@ -119,7 +119,7 @@ abstract class OmnisearchModal extends Modal { }) // Open in background - this.scope.register(['Alt'], 'O', e => { + this.scope.register(['Ctrl'], 'O', e => { if (!isInputComposition()) { // Check if the user is still typing e.preventDefault()