From 7461311aca0e133c257b020199edd99a3e6dd204 Mon Sep 17 00:00:00 2001 From: liyunze <50455574+liyunze-coding@users.noreply.github.com> Date: Wed, 31 Jan 2024 11:24:18 +0800 Subject: [PATCH] added command aliases --- configs.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/configs.js b/configs.js index 09c634d..b97b436 100644 --- a/configs.js +++ b/configs.js @@ -117,6 +117,7 @@ const configs = (function () { "!task", "!add", "!todo", + "!a", ]; // Delete task commands - please add commands in the exact format @@ -132,6 +133,7 @@ const configs = (function () { "!removetask", "!remove", "!delete", + "!r", ]; // Edit task commands - please add commands in the exact format @@ -141,6 +143,7 @@ const configs = (function () { "!etask", "!edittask", "!edit", + "!e", ]; // Finish task commands - please add commands in the exact format @@ -156,10 +159,11 @@ const configs = (function () { "!finish", "!done", "!finished", + "!f", ]; // Next task commands - please add commands in the exact format - const nextTaskCommands = ["!next", "!nexttask"]; + const nextTaskCommands = ["!next", "!nexttask", "!n"]; // Check task commands - please add commands in the exact format const checkCommands = [ @@ -169,6 +173,7 @@ const configs = (function () { "!checktask", "!mytask", "!check", + "!c", ]; // Help commands - please add commands in the exact format