From 0fd5979637fa475f1181f1a4b339903296fac112 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Fri, 22 Nov 2019 08:08:56 -0500 Subject: [PATCH] also autofill on mod+9 --- src/content/shortcuts.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/shortcuts.ts b/src/content/shortcuts.ts index 6b1b1ca5d9..21fbde7ff1 100644 --- a/src/content/shortcuts.ts +++ b/src/content/shortcuts.ts @@ -18,7 +18,7 @@ document.addEventListener('DOMContentLoaded', (event) => { return false; }; - const autofillCommand = isSafari || isEdge ? 'mod+\\' : 'mod+shift+l'; + const autofillCommand = isSafari || isEdge ? ['mod+\\', 'mod+9'] : ['mod+shift+l']; Mousetrap.bind(autofillCommand, () => { sendMessage('autofill_login'); });