summaryrefslogtreecommitdiff
path: root/doc/ja/autogen/user/alias_commands.txt
diff options
context:
space:
mode:
Diffstat (limited to 'doc/ja/autogen/user/alias_commands.txt')
-rw-r--r--doc/ja/autogen/user/alias_commands.txt38
1 files changed, 19 insertions, 19 deletions
diff --git a/doc/ja/autogen/user/alias_commands.txt b/doc/ja/autogen/user/alias_commands.txt
index bbf22a79b..5bca7a466 100644
--- a/doc/ja/autogen/user/alias_commands.txt
+++ b/doc/ja/autogen/user/alias_commands.txt
@@ -4,31 +4,31 @@
----
/alias [-completion <completion>] <alias> [<command> [;<command>...]]
-completion: 別名の補完 (任意、デフォルトではターゲットコマンドを伴って補完される)
- 注意: %%command で存在するコマンドの補完を利用可能
- alias: 別名の名前 ("*" で始めるか終われば別名をリストアップ)
- command: 引数を含めたコマンド名 (セミコロンで分割すれば複数のコマンドを指定できる)
+completion: completion for alias (optional, by default completion is done with target command)
+ note: you can use %%command to use completion of an existing command
+ alias: name of alias (wildcard "*" is allowed)
+ command: command name with arguments (many commands can be separated by semicolons)
-引数無しでは、定義済み別名をリストアップ。
+Without argument, this command lists all defined alias.
-注意: command の中では、特殊変数の置換が行われる:
- $n: 'n' 番目の引数 (1 から 9)
- $-m: 1 から 'm' 番目の引数
- $n-: 'n' 番目から最後の引数
- $n-m: 'n' から 'm' 番目の引数
- $*: 全ての引数
- $~: 最後の引数
- $var: ここで "var" とはバッファの局所変数 (/buffer localvar を参照)
- 例: $nick、$channel、$server、$plugin、$name
+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
-別名を削除するには /unalias コマンドを使ってください:
+To remove an alias, use command /unalias.
-例:
- /split をウィンドウを水平方向に分割する別名と定義:
+Examples:
+ alias /split to split window horizontally:
/alias split /window splith
- /hello を #weechat を除く全てのチャンネルで "hello" と発言する別名と定義:
+ alias /hello to say "hello" on all channels but not on #weechat:
/alias hello /allchan -exclude=#weechat msg * hello
- /forcejoin を /sajoin の補完候補を使い IRC コマンド "forcejoin" を送信する別名と定義:
+ alias /forcejoin to send IRC command "forcejoin" with completion of /sajoin:
/alias -completion %%sajoin forcejoin /quote forcejoin
----