also autofill on mod+9

This commit is contained in:
Kyle Spearrin 2019-11-22 08:08:56 -05:00
parent 88b2746920
commit 0fd5979637
1 changed files with 1 additions and 1 deletions

View File

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