1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-30 06:46:38 +02:00

irc: fix help on mask in command /ignore

This commit is contained in:
Sébastien Helleu
2016-11-09 20:48:35 +01:00
parent ed6528d84f
commit 4a2cd9d034
20 changed files with 329 additions and 316 deletions
+13 -13
View File
@@ -258,23 +258,23 @@ nick: ニックネームまたはマスク (ワイルドカード "*" を使う
add [re:]<nick> [<server> [<channel>]]
del <number>|-all
list: 無視エントリをリストアップ
add: 無視エントリを追加
nick: ニックネーム又はホスト名 ("re:" を付けることで POSIX 拡張正規表現を使えます、"*" は 1 つ以上の文字にマッチします)
del: 無視エントリの削除
number: 削除する無視エントリ番号 (番号はリストを参照)
-all: 全ての無視エントリを削除
server: 無視設定を有効にする内部サーバ名
channel: 無視設定を有効にするチャンネル名
list: list all ignores
add: add an ignore
nick: nick or hostname (can be a POSIX extended regular expression if "re:" is given or a mask using "*" to replace zero or more chars)
del: delete an ignore
number: number of ignore to delete (look at list to find it)
-all: delete all ignores
server: internal server name where ignore is working
channel: channel name where ignore is working
注意: 正規表現で大文字小文字を区別するには "(?-i)" を最初につけてください。
Note: the regular expression can start with "(?-i)" to become case sensitive.
:
全てのサーバ上のニックネーム "toto" を無視:
Examples:
ignore nick "toto" everywhere:
/ignore add toto
freenode サーバ上のホスト名 "toto@domain.com" を無視:
ignore host "toto@domain.com" on freenode server:
/ignore add toto@domain.com freenode
freenode サーバの #weechat チャンネル上のホスト名 "toto*@*.domain.com" を無視:
ignore host "toto*@*.domain.com" on freenode/#weechat:
/ignore add toto*@*.domain.com freenode #weechat
----