This commit is contained in:
Maddison Hellstrom 2017-10-30 22:57:19 -07:00
parent 4f891c06cd
commit e0cdb627b8
1 changed files with 0 additions and 2 deletions

View File

@ -58,7 +58,6 @@ map('K', 'R');
map('H', 'S');
map('L', 'D');
//---- Mapkeys ----//
const ri = { repeatIgnore: true };
@ -69,7 +68,6 @@ mapkey(';se', "#11Edit Settings", editSettings, ri);
mapkey(';pd', "Toggle PDF viewer from SurfingKeys", togglePdfViewer, ri);
mapkey('gi', "Edit current URL with vim editor", vimEditURL, ri);
function mapsitekey(domainRegex, key, desc, f, opts) {
opts = opts || {};
mapkey(`\\${key}`, desc, f, Object.assign({}, opts, { domain: domainRegex }));