aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md4
-rw-r--r--src/background/actions/command.js9
2 files changed, 13 insertions, 0 deletions
diff --git a/README.md b/README.md
index 6b379c5..9d08d33 100644
--- a/README.md
+++ b/README.md
@@ -85,6 +85,10 @@ To adjust the search engine default and add/remove search engines, see the [sear
Open a URL or search keywords by search engine in new tab.
+#### `:q` command
+
+Close the current tab.
+
#### `:winopen` command
Open a URL or search keywords by search engine in new window.
diff --git a/src/background/actions/command.js b/src/background/actions/command.js
index be742cd..2b77507 100644
--- a/src/background/actions/command.js
+++ b/src/background/actions/command.js
@@ -19,6 +19,12 @@ const tabopenCommand = (url) => {
return browser.tabs.create({ url: url });
};
+const tabcloseCommand = () => {
+ return browser.tabs.query({ active: true }).then((tabList) => {
+ return browser.tabs.remove(tabList.map(tab => tab.id));
+ });
+};
+
const winopenCommand = (url) => {
return browser.windows.create({ url });
};
@@ -93,6 +99,9 @@ const exec = (tab, line, settings) => {
});
case 'set':
return setCommand(args);
+ case 'q':
+ case 'quit':
+ return tabcloseCommand();
case '':
return Promise.resolve();
}