From 2cc761ae26a30c07f9d83f3b7596230e5e962121 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Wed, 17 Jan 2018 10:19:16 -0500 Subject: [PATCH] changed safari autofill to cmd + \ --- src/content/shortcuts.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/shortcuts.js b/src/content/shortcuts.js index a8d30e06e93..f0d0f72a26c 100644 --- a/src/content/shortcuts.js +++ b/src/content/shortcuts.js @@ -19,7 +19,7 @@ document.addEventListener('DOMContentLoaded', (event) => { arguments)}}(b))};c.init();r.Mousetrap=c;"undefined"!==typeof module&&module.exports&&(module.exports=c);"function"===typeof define&&define.amd&&define(function(){return c})}})("undefined"!==typeof window?window:null,"undefined"!==typeof window?document:null); /* mousetrap v1.6.1 craig.is/killing/mice */ - const autofillCommand = isSafari ? 'mod+shift+l' : 'mod+shift+l'; + const autofillCommand = isSafari ? 'mod+\\' : 'mod+shift+l'; Mousetrap.bind(autofillCommand, () => { sendMessage('autofill_login'); });