From 4abe87f103ec7dcab96af523bb6f9d2282412f00 Mon Sep 17 00:00:00 2001 From: Cohee <18619528+Cohee1207@users.noreply.github.com> Date: Thu, 25 Jan 2024 18:19:04 +0200 Subject: [PATCH] #1742 Add /chat-manager command --- public/script.js | 1 + 1 file changed, 1 insertion(+) diff --git a/public/script.js b/public/script.js index 68e486c01..052c215cf 100644 --- a/public/script.js +++ b/public/script.js @@ -7839,6 +7839,7 @@ jQuery(async function () { registerSlashCommand('instruct-on', enableInstructCallback, [], '– enables instruct mode', true, true); registerSlashCommand('instruct-off', disableInstructCallback, [], '– disables instruct mode', true, true); registerSlashCommand('context', selectContextCallback, [], '(name) – selects context template by name', true, true); + registerSlashCommand('chat-manager', () => $('#option_select_chat').trigger('click'), ['chat-history', 'manage-chats'], '– opens the chat manager for the current character/group', true, true); setTimeout(function () { $('#groupControlsToggle').trigger('click');