Clean up TAB_FIRST operation
This commit is contained in:
parent
2c97f8a4f3
commit
d0df1a05a1
3 changed files with 4 additions and 4 deletions
|
@ -21,7 +21,7 @@ const exec = (operation, tab) => {
|
||||||
case operations.TAB_NEXT:
|
case operations.TAB_NEXT:
|
||||||
return tabs.selectNextTab(tab.index, operation.count);
|
return tabs.selectNextTab(tab.index, operation.count);
|
||||||
case operations.TAB_FIRST:
|
case operations.TAB_FIRST:
|
||||||
return tabs.selectFirstTab(tab.index, operation.count);
|
return tabs.selectFirstTab();
|
||||||
case operations.TAB_RELOAD:
|
case operations.TAB_RELOAD:
|
||||||
return tabs.reload(tab, operation.cache);
|
return tabs.reload(tab, operation.cache);
|
||||||
case operations.ZOOM_IN:
|
case operations.ZOOM_IN:
|
||||||
|
|
|
@ -79,14 +79,14 @@ const selectNextTab = (current, count) => {
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
const selectFirstTab = (current, count) => {
|
const selectFirstTab = () => {
|
||||||
return browser.tabs.query({ currentWindow: true }).then((tabs) => {
|
return browser.tabs.query({ currentWindow: true }).then((tabs) => {
|
||||||
let id = tabs[0].id;
|
let id = tabs[0].id;
|
||||||
return browser.tabs.update(id, { active: true });
|
return browser.tabs.update(id, { active: true });
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
// const selectFirstTab = (current, count) => {
|
// const selectLastTab = (current, count) => {
|
||||||
// return browser.tabs.query({ currentWindow: true }).then((tabs) => {
|
// return browser.tabs.query({ currentWindow: true }).then((tabs) => {
|
||||||
// let select = tabs.length;
|
// let select = tabs.length;
|
||||||
// let id = tabs[select].id;
|
// let id = tabs[select].id;
|
||||||
|
|
|
@ -28,7 +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 },
|
"g0": { "type": "tabs.first"},
|
||||||
"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" },
|
||||||
|
|
Reference in a new issue