From 80ed062487356310efd5e4a76f1f8978dc836a4f Mon Sep 17 00:00:00 2001 From: Shin'ya UEOKA Date: Mon, 30 Sep 2019 06:15:46 +0000 Subject: Add :help command to open help --- src/background/controllers/CommandController.ts | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/background/controllers/CommandController.ts') 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'); } -- cgit v1.2.3