diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2015-07-20 07:54:59 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2015-07-20 07:54:59 +0200 |
commit | b1bd5c721e66fc4ff414516ad839622988b65e71 (patch) | |
tree | 7b16c3bf8346ebc0cf79a4b67f85c888e82f238d /doc/ja/autogen | |
parent | 31c3151fcc9d278b0ec06652620df5ca1a40ed62 (diff) | |
download | weechat-b1bd5c721e66fc4ff414516ad839622988b65e71.zip |
alias: add options "add", "addcompletion" and "del" in command /alias, remove command /unalias (closes #458)
Diffstat (limited to 'doc/ja/autogen')
-rw-r--r-- | doc/ja/autogen/user/alias_commands.asciidoc | 55 |
1 files changed, 29 insertions, 26 deletions
diff --git a/doc/ja/autogen/user/alias_commands.asciidoc b/doc/ja/autogen/user/alias_commands.asciidoc index 76b06d709..5cc68e3c2 100644 --- a/doc/ja/autogen/user/alias_commands.asciidoc +++ b/doc/ja/autogen/user/alias_commands.asciidoc @@ -3,36 +3,39 @@ // DO NOT EDIT BY HAND! // [[command_alias_alias]] -[command]*`alias`* コマンドの別名を作成:: +[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: 別名の補完 (任意、デフォルトではターゲットコマンドを伴って補完されます) - 注意: %%command で存在するコマンドの補完を利用可能です - alias: 別名の名前 (ワイルドカード "*" を使うことができます) - command: 引数を含めたコマンド名 (セミコロンで分割すれば複数のコマンドを指定できます) + 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) -引数無しでは、定義済み別名をリストアップ。 +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 -注意: command の中では、特殊変数の置換が行われる: - $n: 'n' 番目の引数 (1 から 9) - $-m: 1 から 'm' 番目の引数 - $n-: 'n' 番目から最後の引数 - $n-m: 'n' から 'm' 番目の引数 - $*: 全ての引数 - $~: 最後の引数 - $var: ここで "var" とはバッファの局所変数 (/buffer localvar を参照) - 例: $nick、$channel、$server、$plugin、$name - -別名を削除するには /unalias コマンドを使ってください: - -例: - /split をウィンドウを水平方向に分割する別名と定義: - /alias split /window splith - /hello を #weechat を除く全てのチャンネルで "hello" と発言する別名と定義: - /alias hello /allchan -exclude=#weechat msg * hello - /forcejoin を /sajoin の補完候補を使い IRC コマンド "forcejoin" を送信する別名と定義: - /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 ---- |