aboutsummaryrefslogtreecommitdiff
path: root/src/background/controllers
diff options
context:
space:
mode:
Diffstat (limited to 'src/background/controllers')
-rw-r--r--src/background/controllers/CommandController.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/background/controllers/CommandController.ts b/src/background/controllers/CommandController.ts
index 2ad1683..11fed01 100644
--- a/src/background/controllers/CommandController.ts
+++ b/src/background/controllers/CommandController.ts
@@ -96,6 +96,9 @@ export default class CommandController {
return this.commandIndicator.quitAll();
case 'set':
return this.commandIndicator.set(keywords);
+ case 'h':
+ case 'help':
+ return this.commandIndicator.help();
}
throw new Error(words[0] + ' command is not defined');
}