Default TAB_FIRST mapping

This commit is contained in:
Daniel Campoverde 2017-10-29 21:56:59 -05:00
parent a2651f617f
commit 026fee32d6
2 changed files with 2 additions and 1 deletions

View file

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

View file

@ -28,6 +28,7 @@ export default {
"u": { "type": "tabs.reopen" }, "u": { "type": "tabs.reopen" },
"K": { "type": "tabs.prev", "count": 1 }, "K": { "type": "tabs.prev", "count": 1 },
"J": { "type": "tabs.next", "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": false },
"R": { "type": "tabs.reload", "cache": true }, "R": { "type": "tabs.reload", "cache": true },
"zi": { "type": "zoom.in" }, "zi": { "type": "zoom.in" },