diff options
| author | citrons <citrons@mondecitronne.com> | 2025-06-04 12:19:13 -0500 |
|---|---|---|
| committer | citrons <citrons@mondecitronne.com> | 2025-06-07 16:02:18 -0500 |
| commit | db5c7ebb320871a1fae96c4f579ce376d21e5eb8 (patch) | |
| tree | a8d79a32c356c0d19870d975f9c443a1633df2e9 /client | |
| parent | 90d48cc00ff4d0d1804bed144136dddf5c3e1c70 (diff) | |
additional help text
Diffstat (limited to 'client')
| -rw-r--r-- | client/help.go | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/client/help.go b/client/help.go index 9465f20..5540344 100644 --- a/client/help.go +++ b/client/help.go @@ -16,7 +16,24 @@ var helpTexts = []helpText { helpText {"join", "<name>", "join the channel with this name"}, helpText {"list", "", "list users in the currently shown channel"}, helpText {"leave", "", "leave the currently shown channel"}, + helpText { + "status", "<status>", "set a short status message shown to everyone", + }, helpText {"rename", "<name>", "rename the currently shown channel"}, + helpText {"mode", "[(+/-)modes...] <user>", +`change member permissions in channel. +mode adds a mode and -mode removes it. available modes are: + +see + read messages in the channel + +put + send messages to the channel + +history + read messages previously sent in the channel + +moderate + kick and ban other users + +update + change channel details + +op + modify permissions`}, helpText {"create", "<name>", "create a channel with this name"}, helpText {"quit", "", "exit the application"}, } |
