Add /say
parent
0d0a6d1575
commit
ccde1c2c8c
|
@ -1,4 +1,4 @@
|
||||||
.Dd February 29, 2020
|
.Dd March 22, 2020
|
||||||
.Dt CATGIRL 1
|
.Dt CATGIRL 1
|
||||||
.Os
|
.Os
|
||||||
.
|
.
|
||||||
|
@ -270,6 +270,8 @@ Start a private conversation.
|
||||||
Quit IRC.
|
Quit IRC.
|
||||||
.It Ic /quote Ar command
|
.It Ic /quote Ar command
|
||||||
Send a raw IRC command.
|
Send a raw IRC command.
|
||||||
|
.It Ic /say Ar message
|
||||||
|
Send a regular message.
|
||||||
.It Ic /topic Op Ar topic
|
.It Ic /topic Op Ar topic
|
||||||
Show or set the topic of the channel.
|
Show or set the topic of the channel.
|
||||||
.It Ic /whois Ar nick
|
.It Ic /whois Ar nick
|
||||||
|
|
|
@ -357,6 +357,7 @@ static const struct Handler {
|
||||||
{ "/query", .fn = commandQuery, .restricted = true },
|
{ "/query", .fn = commandQuery, .restricted = true },
|
||||||
{ "/quit", .fn = commandQuit },
|
{ "/quit", .fn = commandQuit },
|
||||||
{ "/quote", .fn = commandQuote, .restricted = true },
|
{ "/quote", .fn = commandQuote, .restricted = true },
|
||||||
|
{ "/say", .fn = commandPrivmsg },
|
||||||
{ "/topic", .fn = commandTopic },
|
{ "/topic", .fn = commandTopic },
|
||||||
{ "/unban", .fn = commandUnban },
|
{ "/unban", .fn = commandUnban },
|
||||||
{ "/unexcept", .fn = commandUnexcept },
|
{ "/unexcept", .fn = commandUnexcept },
|
||||||
|
|
Loading…
Reference in New Issue