simple buffer command
This commit is contained in:
parent
044f24efb6
commit
1c21e4fa28
3 changed files with 30 additions and 6 deletions
|
@ -1,2 +0,0 @@
|
|||
export const OPEN = 'open';
|
||||
export const TABOPEN = 'tabopen';
|
|
@ -1,6 +1,5 @@
|
|||
import * as actions from '../shared/actions';
|
||||
import * as tabs from './tabs';
|
||||
import * as commands from './commands';
|
||||
import * as zooms from './zooms';
|
||||
import KeyQueue from './key-queue';
|
||||
|
||||
|
@ -59,15 +58,29 @@ const normalizeUrl = (string) => {
|
|||
}
|
||||
}
|
||||
|
||||
const cmdBuffer = (arg) => {
|
||||
if (isNaN(arg)) {
|
||||
// TODO support buffer identification by non-number value
|
||||
throw new TypeError(`${arg} is not a number`);
|
||||
}
|
||||
|
||||
let index = parseInt(arg, 10) - 1;
|
||||
tabs.selectAt(index);
|
||||
}
|
||||
|
||||
const cmdEnterHandle = (request, sender) => {
|
||||
let words = request.text.split(' ').filter((s) => s.length > 0);
|
||||
switch (words[0]) {
|
||||
case commands.OPEN:
|
||||
case 'open':
|
||||
browser.tabs.update(sender.tab.id, { url: normalizeUrl(words[1]) });
|
||||
return;
|
||||
case commands.TABOPEN:
|
||||
case 'tabopen':
|
||||
browser.tabs.create({ url: normalizeUrl(words[1]) });
|
||||
return;
|
||||
case 'b':
|
||||
case 'buffer':
|
||||
cmdBuffer(words[1]);
|
||||
return;
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
@ -18,6 +18,19 @@ const reopenTab = () => {
|
|||
});
|
||||
};
|
||||
|
||||
const selectAt = (index) => {
|
||||
chrome.tabs.query({ currentWindow: true }, (tabs) => {
|
||||
if (tabs.length < 2) {
|
||||
return;
|
||||
}
|
||||
if (index < 0 || tabs.length <= index) {
|
||||
throw new RangeError(`buffer ${index} does not exist`)
|
||||
}
|
||||
let id = tabs[index].id;
|
||||
chrome.tabs.update(id, { active: true })
|
||||
});
|
||||
}
|
||||
|
||||
const selectPrevTab = (current, count) => {
|
||||
chrome.tabs.query({ currentWindow: true }, (tabs) => {
|
||||
if (tabs.length < 2) {
|
||||
|
@ -47,4 +60,4 @@ const reload = (current, cache) => {
|
|||
);
|
||||
};
|
||||
|
||||
export { closeTab, reopenTab, selectNextTab, selectPrevTab, reload };
|
||||
export { closeTab, reopenTab, selectAt, selectNextTab, selectPrevTab, reload };
|
||||
|
|
Reference in a new issue