diff --git a/commands.js b/commands.js index 7f13792..5f2d5d9 100644 --- a/commands.js +++ b/commands.js @@ -411,4 +411,12 @@ export default { markServerBufferUnread(app); }, }, + "list": { + usage: "[filter]", + description: "Retrieve a list of channels from a network", + execute: (app, args) => { + getActiveClient(app).send({ command: "LIST", params: args }); + markServerBufferUnread(app); + }, + }, };