summaryrefslogtreecommitdiff
path: root/doc/it/autogen/user/alias_commands.txt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/it/autogen/user/alias_commands.txt')
-rw-r--r--doc/it/autogen/user/alias_commands.txt39
1 files changed, 24 insertions, 15 deletions
diff --git a/doc/it/autogen/user/alias_commands.txt b/doc/it/autogen/user/alias_commands.txt
index 0f38ba089..76e0960f5 100644
--- a/doc/it/autogen/user/alias_commands.txt
+++ b/doc/it/autogen/user/alias_commands.txt
@@ -1,23 +1,32 @@
-• *`/alias`* `[nome_alias [comando [argomenti]]]`::
+• *`/alias`* `[[-completion completion] alias_name [command [arguments]]]`::
........................................
crea un alias per un comando
- nome_alias: nome di un alias (può iniziare o terminare con "*" per un elenco di alias)
- comando: nome comando (più comandi possono essere separati da punto e virgola)
- argomenti: argomenti per un comando
+ completion: completion for alias (optional, by default completion is done with target command)
+ alias_name: name of alias (can start or end with "*" for alias listing)
+ command: command name (many commands can be separated by semicolons)
+ arguments: arguments for command
- Senza argomanto, questo comando elenca tutti gli alias definiti.
+ Without argument, this command lists all defined alias.
- Nota: nel comando, le variabii speciali vengono sostituite:
- $n: argomento 'n' (tra 1 e 9)
- $-m: argomenti da 1 a 'm'
- $n-: argomenti da 'n' alla fine
- $n-m: argomenti da 'n' a 'm'
- $*: tutti gli argomenti
- $~: ultimo argomento
- $nick: nick corrente
- $channel: canale corrente
- $server: server corrente
+ Note: in command, special variables are replaced:
+ $n: argument 'n' (between 1 and 9)
+ $-m: arguments from 1 to 'm'
+ $n-: arguments from 'n' to last
+ $n-m: arguments from 'n' to 'm'
+ $*: all arguments
+ $~: last argument
+ $nick: current nick
+ $channel: current channel
+ $server: current server
+
+ Examples:
+ alias /split to split window horizontally:
+ /alias split /window splith
+ alias /hello to say "hello" on all channels but not on #weechat:
+ /alias hello /allchan -exclude=#weechat msg * hello
+ alias /forcejoin to send IRC command "forcejoin" with completion of /sajoin:
+ /alias -completion %%sajoin /quote forcejoin
........................................