From 36e5087479691d546c672233198dc26f657ce028 Mon Sep 17 00:00:00 2001 From: Chad Scharf <3904944+cscharf@users.noreply.github.com> Date: Wed, 12 Aug 2020 17:08:34 -0400 Subject: [PATCH] Added Cmd+Shift+P for autofill in safari --- 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 fd01e73b2f..85bc4acf75 100644 --- a/src/content/shortcuts.ts +++ b/src/content/shortcuts.ts @@ -20,7 +20,7 @@ document.addEventListener('DOMContentLoaded', (event) => { let autofillCommand = ['mod+shift+l']; if (isSafari) { - autofillCommand = ['mod+\\', 'mod+8']; + autofillCommand = ['mod+\\', 'mod+8', 'mod+shift+p']; } else if (isEdge) { autofillCommand = ['mod+\\', 'mod+9']; }