support r/R commands
This commit is contained in:
parent
a5f1e06efc
commit
cb36fc666c
4 changed files with 15 additions and 1 deletions
|
@ -40,4 +40,11 @@ const selectNextTab = (current, count) => {
|
|||
});
|
||||
};
|
||||
|
||||
export { closeTab, reopenTab, selectNextTab, selectPrevTab };
|
||||
const reload = (current, cache) => {
|
||||
browser.tabs.reload(
|
||||
current.id,
|
||||
{ bypassCache: cache }
|
||||
);
|
||||
};
|
||||
|
||||
export { closeTab, reopenTab, selectNextTab, selectPrevTab, reload };
|
||||
|
|
Reference in a new issue