diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2018-11-19 21:00:21 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2018-11-19 21:00:21 +0100 |
commit | 4803cd62afca17fcb7b225e813a0dbbf3cbc68bb (patch) | |
tree | a46c7e03458206f3e8efb803c5869704c2c8dec1 /doc/ja | |
parent | fc0a3ef10a17a0a971098d354493d3ac58ff4b49 (diff) | |
download | weechat-4803cd62afca17fcb7b225e813a0dbbf3cbc68bb.zip |
doc: translate FAQ changes in other languages (issue #1280)
Diffstat (limited to 'doc/ja')
-rw-r--r-- | doc/ja/weechat_faq.ja.adoc | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/doc/ja/weechat_faq.ja.adoc b/doc/ja/weechat_faq.ja.adoc index 04f9d8028..2f6275137 100644 --- a/doc/ja/weechat_faq.ja.adoc +++ b/doc/ja/weechat_faq.ja.adoc @@ -829,6 +829,44 @@ _launcher.pl_ の場合、コマンドの設定が必要です: /script search notify ---- +// TRANSLATION MISSING +[[disable_highlights_for_specific_nicks]] +=== How can I disable highlights for specific nicks? + +With WeeChat ≥ 0.3.4 you can use the +link:weechat_user.en.html#max_hotlist_level_nicks[hotlist_max_level_nicks_add] +buffer property to set the max hotlist level for some nicks, per buffer, +or per group of buffers (like IRC servers). + +To only disable highlights, you'd have to set it to 2: + +---- +/buffer set hotlist_max_level_nicks_add joe:2,mike:2 +---- + +This buffer property isn't stored in the configuration though. +To automatically reapply these buffer properties, you would need the +_buffer_autoset.py_ script: + +---- +/script install buffer_autoset.py +---- + +For example, to permanently disable highlights from "mike" on #weechat +on the IRC server freenode: + +---- +/buffer_autoset add irc.freenode.#weechat hotlist_max_level_nicks_add mike:2 +---- + +To apply it to the entire freenode server instead: + +---- +/buffer_autoset add irc.freenode hotlist_max_level_nicks_add mike:2 +---- + +For more examples, see `/help buffer_autoset`. + [[irc_target_buffer]] === どうすればマージされたバッファ内であるコマンドを発行するターゲットバッファを変更できますか。 |