summaryrefslogtreecommitdiff
path: root/doc/de/autogen/user/alias_commands.asciidoc
diff options
context:
space:
mode:
Diffstat (limited to 'doc/de/autogen/user/alias_commands.asciidoc')
-rw-r--r--doc/de/autogen/user/alias_commands.asciidoc55
1 files changed, 29 insertions, 26 deletions
diff --git a/doc/de/autogen/user/alias_commands.asciidoc b/doc/de/autogen/user/alias_commands.asciidoc
index f355bdac7..5cc68e3c2 100644
--- a/doc/de/autogen/user/alias_commands.asciidoc
+++ b/doc/de/autogen/user/alias_commands.asciidoc
@@ -3,36 +3,39 @@
// DO NOT EDIT BY HAND!
//
[[command_alias_alias]]
-[command]*`alias`* Einem Befehl wird ein Alias zugewiesen::
+[command]*`alias`* list, add or remove command aliases::
----
-/alias [-completion <completion>] <alias> [<command> [;<command>...]]
+/alias list [<alias>]
+ add <alias> [<command>[;<command>...]]
+ addcompletion <completion> <alias> [<command>[;<command>...]]
+ del <alias> [<alias>...]
-completion: optionale Vervollständigung für einen Alias-Befehl (Standardverhalten: Vervollständigung wird auf den Zielbefehl angewendet)
- Hinweis: Mit der Variablen "%%command" kann eine Vervollständigung eines vorhandenen Befehls durchgeführt werden
- alias: Name des Alias (Platzhalter "*" kann verwendet werden)
- command: Name des zuzuordnenden Befehls (WeeChat- oder IRC-Befehl ohne führenden '/', mehrere Befehle müssen durch Semikolon getrennt werden)
+ list: list aliases (without argument, this list is displayed)
+ add: add an alias
+addcompletion: add an alias with a custom completion
+ del: delete an alias
+ completion: completion for alias: by default completion is done with target command
+ note: you can use %%command to use completion of an existing command
+ alias: name of alias
+ command: command name with arguments (many commands can be separated by semicolons)
-Ohne Angabe von Argumenten werden alle definierten Aliase angezeigt.
+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
+ $var: where "var" is a local variable of buffer (see /buffer localvar)
+ examples: $nick, $channel, $server, $plugin, $name
-Anmerkung: Im Befehl können Variablen genutzt werden, die dann durch den entsprechenden Wert ersetzt werden:
- $n: Argument 'n' (zwischen 1 und 9)
- $-m: Argumente von 1 bis 'm'
- $n-: Argumente von 'n' bis zum letzten Argument
- $n-m: Argumente von 'n' bis 'm'
- $*: alle Argumente
- $~: letztes Argument
- $var: "var" ist eine lokale Variable für den jeweiligen Buffer (siehe /buffer localvar)
- Beispiel: $nick, $channel, $server, $plugin, $name
-
-Um ein Alias zu löschen wird der Befehl "/unalias" genutzt.
-
-Beispiele:
- Alias "/split" wird anlegt um damit ein Fenster horizontal zu teilen:
- /alias split /window splith
- Alias "/hallo" wird angelegt um in allen Channels, außer im #weechat Channel, den Text "Hallo" auszugeben:
- /alias hallo /allchan -exclude=#weechat msg * Hallo
- Alias "/forcejoin" wird angelegt um den IRC Befehl "forcejoin" mit einer Vervollständigung von /sajoin auszuführen:
- /alias -completion %%sajoin forcejoin /quote forcejoin
+Examples:
+ alias /split to split window horizontally:
+ /alias add split /window splith
+ alias /hello to say "hello" on all channels but not on #weechat:
+ /alias add hello /allchan -exclude=#weechat msg * hello
+ alias /forcejoin to send IRC command "forcejoin" with completion of /sajoin:
+ /alias addcompletion %%sajoin forcejoin /quote forcejoin
----