./projects/dgg-untagall-command
dgg /untagall command
A merged contribution to chat-gui, the open-source chat client behind a growing streaming platform: a `/untagall` command that clears every user you've tagged in one shot, guarded by a y/yes confirmation.
A merged contribution to chat-gui, the open-source chat client behind destiny.gg: a new /untagall command that clears every user you've tagged in one shot.
What it does
- Clears your entire list of tagged nicks/users at once — no more removing them one by one.
- Guards against accidents with a confirmation step:
/untagallprints a warning, and you confirm with/untagall y(oryes), mirroring the chat's existing/unignoreallcommand. - Registered in
CHAT_COMMANDS, so it shows up in/helpand tab-autocomplete like any first-class command.
Details
The change touches two files — assets/chat/js/chat.js and assets/chat/js/commands.js — adding the command handler and its registration (+39 lines). Tested in the client's mock mode with npm test passing.