Default TAB_FIRST mapping

jh-changes
Daniel Campoverde 7 years ago
parent a2651f617f
commit 026fee32d6
  1. 2
      src/background/tabs.js
  2. 1
      src/shared/default-settings.js

@ -101,5 +101,5 @@ const reload = (current, cache) => {
export {
closeTab, reopenTab, selectAt, selectByKeyword, getCompletions,
selectPrevTab, selectNextTab, reload
selectPrevTab, selectNextTab, selectFirstTab, reload
};

@ -28,6 +28,7 @@ export default {
"u": { "type": "tabs.reopen" },
"K": { "type": "tabs.prev", "count": 1 },
"J": { "type": "tabs.next", "count": 1 },
"g0": { "type": "tabs.first", "count": 1 },
"r": { "type": "tabs.reload", "cache": false },
"R": { "type": "tabs.reload", "cache": true },
"zi": { "type": "zoom.in" },