1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-04 05:08:06 +02:00

Merge pull request #1356 from bitwarden/feature/701-safari-autofill-cmd-binding

Added Cmd+Shift+P for autofill in safari
This commit is contained in:
Chad Scharf 2020-08-12 17:25:30 -04:00 committed by GitHub
commit f158661afa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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'];
}