mirror of
https://github.com/irssi/irssi.git
synced 2024-10-27 05:20:20 -04:00
Rewrote the syntax documentation for all the commands starting with A.
This commit is contained in:
parent
f077280643
commit
b2f265f44e
@ -1,28 +1,30 @@
|
|||||||
|
|
||||||
|
Syntax:
|
||||||
|
|
||||||
@SYNTAX:accept@
|
@SYNTAX:accept@
|
||||||
MODE <your nick> <+|->g
|
|
||||||
|
|
||||||
Works only in some IRC networks.
|
Parameters:
|
||||||
|
|
||||||
ACCEPT allows you to specify who you want to receive private messages
|
A comma-separated list of nicknames to add or remove. If no argument is
|
||||||
and notices from while you are in callerid (+g) mode.
|
given, your accept list is displayed.
|
||||||
When you have user mode +g enabled, messages from other users are blocked and
|
|
||||||
the sender is notified; you are also notified but at most once per minute.
|
|
||||||
IRC operators and services can usually send through +g.
|
|
||||||
|
|
||||||
The accept list is lost when you disconnect.
|
Description:
|
||||||
Users are automatically removed from the accept list if they quit, split
|
|
||||||
or change nick.
|
|
||||||
|
|
||||||
The argument is a comma-separated list of nicks to add or (when prefixed
|
Allows you to specify who you want to receive private messages and notices
|
||||||
with a '-') to remove. No output is returned for users successfully added
|
from while you have callerid enabled.
|
||||||
or removed.
|
|
||||||
If no arguments are given, your accept list is displayed (ACCEPT * on the
|
|
||||||
protocol level).
|
|
||||||
|
|
||||||
Example:
|
When you have callerid enabled, messages from other users are blocked and
|
||||||
/ACCEPT user1,user2,-user3,-user4 - Adds user1 and user2 and removes
|
the sender is notified; you are also notified but at most once per minute.
|
||||||
user3 and user4.
|
|
||||||
|
Users are automatically removed from the accept list if they quit, split
|
||||||
|
or change nickname; the accept list is lost when you disconnect.
|
||||||
|
|
||||||
|
This command only works on IRC servers that support the callerid user mode.
|
||||||
|
|
||||||
|
Examples:
|
||||||
|
|
||||||
|
/ACCEPT mike,bob,-john,-sarah
|
||||||
|
/ACCEPT sarah,-bob
|
||||||
|
|
||||||
See also: IGNORE, SILENCE
|
See also: IGNORE, SILENCE
|
||||||
|
|
||||||
|
@ -1,9 +1,23 @@
|
|||||||
|
|
||||||
|
Syntax:
|
||||||
|
|
||||||
@SYNTAX:action@
|
@SYNTAX:action@
|
||||||
|
|
||||||
Same as ME, but gets channel or nick as an additional parameter.
|
Parameters:
|
||||||
Example: /ACTION #irssi yawns
|
|
||||||
(This outputs the following to #irssi: * Nick yawns)
|
-<server tag>: The server tag you want to send the action emote to.
|
||||||
|
|
||||||
|
A target nickname or channel and the message.
|
||||||
|
|
||||||
|
Description:
|
||||||
|
|
||||||
|
Sends an action emote to a nickname or a channel.
|
||||||
|
|
||||||
|
Examples:
|
||||||
|
|
||||||
|
/ACTION #irssi is hungry!
|
||||||
|
/ACTION mike had an awesome day @ work
|
||||||
|
/ACTION -efnet #irssi is happy it's Friday
|
||||||
|
|
||||||
See also: ME
|
See also: ME
|
||||||
|
|
||||||
|
@ -1,8 +1,22 @@
|
|||||||
|
|
||||||
|
Syntax:
|
||||||
|
|
||||||
@SYNTAX:admin@
|
@SYNTAX:admin@
|
||||||
|
|
||||||
Displays the administrative details about the given server. If
|
Parameters:
|
||||||
no server is specified, the server you are connected to is
|
|
||||||
used. If a nickname is supplied then it gives the administrative
|
A nickname or server for which you want to know the administrative details;
|
||||||
information for that person's current server.
|
if no argument is given, the server you are connected to will be used.
|
||||||
|
|
||||||
|
Description:
|
||||||
|
|
||||||
|
Displays the administrative details of a server.
|
||||||
|
|
||||||
|
Examples:
|
||||||
|
|
||||||
|
/ADMIN
|
||||||
|
/ADMIN orwell.freenode.net
|
||||||
|
/ADMIN mike
|
||||||
|
|
||||||
|
See also: INFO
|
||||||
|
|
||||||
|
@ -1,22 +1,32 @@
|
|||||||
|
|
||||||
|
Syntax:
|
||||||
|
|
||||||
@SYNTAX:alias@
|
@SYNTAX:alias@
|
||||||
|
|
||||||
Creates a new alias or shows matching defined aliases. Without
|
Parameters:
|
||||||
parameters shows all defined aliases. Multiple commands can be run if
|
|
||||||
separated with ';' character. Parameters given to alias are in $0..$9
|
A name of the alias and the command to execute. You can prepend the alias
|
||||||
variables, if you don't use them in your alias, all parameters are
|
with the '-' character to remove the alias. If no argument is given, your
|
||||||
automatically appended after it.
|
aliases will be displayed.
|
||||||
|
|
||||||
|
Description:
|
||||||
|
|
||||||
|
Creates or updates an alias. You can use the ';' character to separate
|
||||||
|
multiple commands.
|
||||||
|
|
||||||
|
The parametesr given to the alias are expanded in '$[\d]' For example $0,
|
||||||
|
$1, $2, $8, $12, ...
|
||||||
|
|
||||||
|
If you don't use any parameters in your alias, all parameters will be
|
||||||
|
automatically appended after it.
|
||||||
|
|
||||||
Examples:
|
Examples:
|
||||||
|
|
||||||
/ALIAS w
|
/ALIAS COMEBACK SAY I was hoping for a battle of wits, but you seem to be unarmed.
|
||||||
- shows all defined aliases starting with letter w.
|
/ALIAS -COMEBACK
|
||||||
|
/ALIAS ATAG SCRIPT EXEC Irssi::active_win->change_server(Irssi::server_find_tag("$0"));
|
||||||
|
/ALIAS UNACT SCRIPT EXEC foreach $$w (Irssi::windows()) { Irssi::command("window goto $$w->{refnum}")\;} ; WINDOW GOTO $winref
|
||||||
|
/ALIAS QOP ^MSG Q op $C
|
||||||
|
|
||||||
/ALIAS send echo Sending file $1 to $0;dcc send $0-
|
See also: BIND, UNALIAS
|
||||||
- creates alias 'send'.
|
|
||||||
|
|
||||||
/ALIAS -send
|
|
||||||
- removes alias 'send'.
|
|
||||||
|
|
||||||
See also: UNALIAS
|
|
||||||
|
|
||||||
|
@ -1,28 +1,32 @@
|
|||||||
|
|
||||||
|
Syntax:
|
||||||
|
|
||||||
@SYNTAX:away@
|
@SYNTAX:away@
|
||||||
|
|
||||||
-one
|
Parameters:
|
||||||
-all
|
|
||||||
|
|
||||||
This command marks you as being "away". It is used to tell people that
|
-one: Marks yourself as away on the server you are connected to.
|
||||||
you currently aren't paying attention to your screen. You might use it
|
-all: Marks yourself as away on all the servers you are connected to.
|
||||||
if you are taking a nap, in the shower, getting some food, or otherwise
|
|
||||||
just aren't there at the moment. When you're "away" you will see "(zZzZ)"
|
|
||||||
in your statusbar.
|
|
||||||
|
|
||||||
Anyone who does a WHOIS on your nickname will see that you are away,
|
You away message; if no argument is given, your away status will be removed.
|
||||||
as well as your away message. Anyone doing a WHO that returns information
|
|
||||||
about you will also see that you're gone.
|
|
||||||
|
|
||||||
By default, if someone sends you a MSG while you are away, your client
|
Description:
|
||||||
will beep. You can turn this off by setting BEEP_WHEN_AWAY to OFF.
|
|
||||||
|
|
||||||
If you send a MSG to someone who is away, you will automatically be
|
Marks yourself as "away"; this method is used to inform people that you
|
||||||
notified of this. By default, you will only receive this notification
|
are not paying attention to your screen.
|
||||||
once. If you wish to see it every time (to tell when a person is no
|
|
||||||
longer marked away, for instance), change SHOW_AWAY_ONCE to OFF.
|
|
||||||
|
|
||||||
You can remove your away status by using AWAY with no arguments.
|
You might use it when you are taking a nap, in the shower, getting some
|
||||||
|
food, or otherwise engaged. When you're "away" you will see "(zZzZ)" in
|
||||||
|
your statusbar.
|
||||||
|
|
||||||
See also: SET AWAY
|
Anyone who does a WHOIS on your nickname will see that you are away, as
|
||||||
|
well as your away message.
|
||||||
|
|
||||||
|
Examples:
|
||||||
|
|
||||||
|
/AWAY I'm getting some food.
|
||||||
|
/AWAY zZzZ
|
||||||
|
/AWAY -one Feeding the cat!
|
||||||
|
|
||||||
|
See also: DISCONNECT
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user