diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2023-08-24 10:38:18 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2023-08-24 11:49:29 +0200 |
commit | 303fe6744e13e148fe3876826139ca30e5a8353c (patch) | |
tree | 7df69f911bac5c938d0be2cbe522aa4dc391a187 /doc | |
parent | 3aef8b7292330da6d4a7dd97ddb261baca3f33e3 (diff) | |
download | weechat-303fe6744e13e148fe3876826139ca30e5a8353c.zip |
core: add option `setauto` in command `/buffer` (issue #352)
Diffstat (limited to 'doc')
-rw-r--r-- | doc/de/weechat_faq.de.adoc | 27 | ||||
-rw-r--r-- | doc/de/weechat_user.de.adoc | 24 | ||||
-rw-r--r-- | doc/en/weechat_faq.en.adoc | 25 | ||||
-rw-r--r-- | doc/en/weechat_user.en.adoc | 24 | ||||
-rw-r--r-- | doc/es/weechat_faq.es.adoc | 27 | ||||
-rw-r--r-- | doc/fr/weechat_faq.fr.adoc | 25 | ||||
-rw-r--r-- | doc/fr/weechat_user.fr.adoc | 27 | ||||
-rw-r--r-- | doc/it/weechat_faq.it.adoc | 26 | ||||
-rw-r--r-- | doc/it/weechat_user.it.adoc | 22 | ||||
-rw-r--r-- | doc/ja/weechat_faq.ja.adoc | 26 | ||||
-rw-r--r-- | doc/ja/weechat_user.ja.adoc | 21 | ||||
-rw-r--r-- | doc/pl/weechat_faq.pl.adoc | 26 | ||||
-rw-r--r-- | doc/pl/weechat_user.pl.adoc | 21 | ||||
-rw-r--r-- | doc/sr/weechat_faq.sr.adoc | 24 | ||||
-rw-r--r-- | doc/sr/weechat_user.sr.adoc | 18 |
15 files changed, 71 insertions, 292 deletions
diff --git a/doc/de/weechat_faq.de.adoc b/doc/de/weechat_faq.de.adoc index fe3797c39..feb024039 100644 --- a/doc/de/weechat_faq.de.adoc +++ b/doc/de/weechat_faq.de.adoc @@ -993,35 +993,22 @@ die Buffer-Eigenschaft genutzt werden, um das maximale Hotlist-Level für einige oder pro Gruppe von Buffern (wie IRC-Server). Um nun Highlights (Hervorhebungen) für bestimmte Nicks zu deaktivieren, muss -man die entsprechende Eigenschaft auf 2 setzen: +man die entsprechende Eigenschaft auf 2 setzen. ----- -/buffer set hotlist_max_level_nicks_add joe:2,mike:2 ----- - -Diese Buffereigenschaft wird aber nicht permanent in der Konfiguration -gespeichert. Um diese Eigenschaften permanent zu verwenden, muss man -das Skript _buffer_autoset.py_ nutzen: - ----- -/script install buffer_autoset.py ----- - -Um zum Beispiel Highlights (Hervorhebungen) von Nick "mike" im Kanal -#weechat auf dem IRC Server libera zu deaktivieren: +// TRANSLATION MISSING +For the current buffer: ---- -/buffer_autoset add irc.libera.#weechat hotlist_max_level_nicks_add mike:2 +/buffer setauto hotlist_max_level_nicks_add joe:2,mike:2 ---- -Um dies auf den kompletten libera Server anzuwenden: +// TRANSLATION MISSING +For all channels on server "libera": ---- -/buffer_autoset add irc.libera hotlist_max_level_nicks_add mike:2 +/set weechat.buffer.irc.libera.*.hotlist_max_level_nicks_add joe:2,mike:2 ---- -Für weitere Beispiele, siehe `+/help buffer_autoset+`. - [[irc_target_buffer]] === Wie kann ich bei zusammengefügten Buffern den Zielbuffer ändern (z.B. bei einem Server-Buffer)? diff --git a/doc/de/weechat_user.de.adoc b/doc/de/weechat_user.de.adoc index 909edcb80..6adeb3603 100644 --- a/doc/de/weechat_user.de.adoc +++ b/doc/de/weechat_user.de.adoc @@ -2246,15 +2246,9 @@ und für jeden einzelen Nick kann ein maximler Hotlist-Level eingestellt wertden Um zum Beispiel Highlights von "joe" und "mike" im aktuellen Buffer zu deaktivieren: ---- -/buffer set hotlist_max_level_nicks_add joe:2,mike:2 +/buffer setauto hotlist_max_level_nicks_add joe:2,mike:2 ---- -[NOTE] -Die Buffer-Eigenschaft "hotlist_max_level_nicks" ist keine permanente Einstellung und wird nicht -in der Konfigurationsdatei gesichert. + Um diese Einstellung persistent zu machen benötigt man -das Skript _buffer_autoset.py_: Um das Skript zu installieren `+/script install buffer_autoset.py+` -und um eine Hilfe zu erhalten wie man es nutzt: `+/help buffer_autoset+`. - [[highlights]] === Hervorhebungen @@ -2279,15 +2273,9 @@ Dies kann auch mit der Buffereigenschaft „highlight_disable_regex“ eingestel Gleiches Beispiel, spezifisch für den aktuellen Buffer: ---- -/buffer set highlight_disable_regex <flash.*> +/buffer setauto highlight_disable_regex <flash.*> ---- -[NOTE] -Die Buffer-Eigenschaft "highlight_disable_regex" ist keine permanente Einstellung und wird nicht -in der Konfigurationsdatei gesichert. + Um diese Einstellung persistent zu machen benötigt man -das Skript _buffer_autoset.py_: Um das Skript zu installieren `+/script install buffer_autoset.py+` -und um eine Hilfe zu erhalten wie man es nutzt: `+/help buffer_autoset+`. - [[highlights_words]] ==== Worte als Highlights hinzufügen @@ -2346,15 +2334,9 @@ die Eigenschaft des Buffers mittels "highlight_regex" anpasst. Um zum Beispiel jede Nachricht im aktuellen Buffer als Highlight-Nachricht einzustufen: ---- -/buffer set highlight_regex .* +/buffer setauto highlight_regex .* ---- -[NOTE] -Die Buffer-Eigenschaft "highlight_regex" ist keine permanente Einstellung und wird nicht -in der Konfigurationsdatei gesichert. + Um diese Einstellung persistent zu machen benötigt man -das Skript _buffer_autoset.py_: Um das Skript zu installieren `+/script install buffer_autoset.py+` -und um eine Hilfe zu erhalten wie man es nutzt: `+/help buffer_autoset+`. - [[buffer_logging]] === Bufferprotokollierung diff --git a/doc/en/weechat_faq.en.adoc b/doc/en/weechat_faq.en.adoc index f9f641703..cbd190239 100644 --- a/doc/en/weechat_faq.en.adoc +++ b/doc/en/weechat_faq.en.adoc @@ -925,35 +925,20 @@ 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: +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 libera: +For the current buffer: ---- -/buffer_autoset add irc.libera.#weechat hotlist_max_level_nicks_add mike:2 +/buffer setauto hotlist_max_level_nicks_add joe:2,mike:2 ---- -To apply it to the entire libera server instead: +For all channels on server "libera": ---- -/buffer_autoset add irc.libera hotlist_max_level_nicks_add mike:2 +/set weechat.buffer.irc.libera.*.hotlist_max_level_nicks_add joe:2,mike:2 ---- -For more examples, see `+/help buffer_autoset+`. - [[irc_target_buffer]] === How can I change target buffer for commands on merged buffers (like buffer with servers)? diff --git a/doc/en/weechat_user.en.adoc b/doc/en/weechat_user.en.adoc index d0ea70be9..ad29093ab 100644 --- a/doc/en/weechat_user.en.adoc +++ b/doc/en/weechat_user.en.adoc @@ -2221,15 +2221,9 @@ and for each nick the max hotlist level to trigger, possible levels are: For example to disable highlights from "joe" and "mike" on current buffer: ---- -/buffer set hotlist_max_level_nicks_add joe:2,mike:2 +/buffer setauto hotlist_max_level_nicks_add joe:2,mike:2 ---- -[NOTE] -The buffer property "hotlist_max_level_nicks" is not saved in configuration. + -You can easily save it with the script _buffer_autoset.py_: you can install it -with `+/script install buffer_autoset.py+` and get help with -`+/help buffer_autoset+`. - [[highlights]] === Highlights @@ -2254,15 +2248,9 @@ This can also be set with the buffer property "highlight_disable_regex". Same example, specific to the current buffer: ---- -/buffer set highlight_disable_regex <flash.*> +/buffer setauto highlight_disable_regex <flash.*> ---- -[NOTE] -The buffer property "highlight_disable_regex" is not saved in configuration. + -You can easily save it with the script _buffer_autoset.py_: you can install it -with `+/script install buffer_autoset.py+` and get help with -`+/help buffer_autoset+`. - [[highlights_words]] ==== Add words to highlight @@ -2317,15 +2305,9 @@ You can force highlight using a regular expression with the buffer property For example to force the highlight on all messages in the current buffer: ---- -/buffer set highlight_regex .* +/buffer setauto highlight_regex .* ---- -[NOTE] -The buffer property "highlight_regex" is not saved in configuration. + -You can easily save it with the script _buffer_autoset.py_: you can install it -with `+/script install buffer_autoset.py+` and get help with -`+/help buffer_autoset+`. - [[buffer_logging]] === Buffer logging diff --git a/doc/es/weechat_faq.es.adoc b/doc/es/weechat_faq.es.adoc index f735fb79e..60abe1255 100644 --- a/doc/es/weechat_faq.es.adoc +++ b/doc/es/weechat_faq.es.adoc @@ -954,35 +954,22 @@ 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). -Para únicamente inhabilitar las notificaciones, debería establecerlo a 2: +Para únicamente inhabilitar las notificaciones, debería establecerlo a 2. ----- -/buffer set hotlist_max_level_nicks_add joe:2,mike:2 ----- - -Esta propiedad del buffer no es almacenada en la configuración. -Para volver a aplicar automáticamente estas propiedades del buffer, necesitaría el script -_buffer_autoset.py_: - ----- -/script install buffer_autoset.py ----- - -Por ejemplo, para inhabilitar automáticamente las menciones de "mike" en #weechat -en el servidor IRC de libera: +// TRANSLATION MISSING +For the current buffer: ---- -/buffer_autoset add irc.libera.#weechat hotlist_max_level_nicks_add mike:2 +/buffer setauto hotlist_max_level_nicks_add joe:2,mike:2 ---- -Para aplicarlo al servidor completo de libera: +// TRANSLATION MISSING +For all channels on server "libera": ---- -/buffer_autoset add irc.libera hotlist_max_level_nicks_add mike:2 +/set weechat.buffer.irc.libera.*.hotlist_max_level_nicks_add joe:2,mike:2 ---- -Para más ejemplos, vea `+/help buffer_autoset+`. - [[irc_target_buffer]] === ¿Cómo puedo cambiar el objetivo del buffer para comandos en buffers unidos (como en un buffer con servidores)? diff --git a/doc/fr/weechat_faq.fr.adoc b/doc/fr/weechat_faq.fr.adoc index 4f52ed373..5f50f681a 100644 --- a/doc/fr/weechat_faq.fr.adoc +++ b/doc/fr/weechat_faq.fr.adoc @@ -955,35 +955,20 @@ link:weechat_user.fr.html#max_hotlist_level_nicks[hotlist_max_level_nicks_add ^ pour définir le niveau maximum de hotlist pour certains pseudos, par tampon, ou groupe de tampons (comme des serveurs IRC). -Pour désactiver seulement les highlights, vous pouvez positionner la valeur à 2 : +Pour désactiver seulement les highlights, vous pouvez positionner la valeur à 2. ----- -/buffer set hotlist_max_level_nicks_add joe:2,mike:2 ----- - -Cependant, cette propriété de tampon n'est pas sauvegardée dans la configuration. -Pour automatiquement réappliquer ces propriétés de tampons, vous aurez besoin -du script _buffer_autoset.py_ : - ----- -/script install buffer_autoset.py ----- - -Par exemple, pour désactiver de manière permanente les highlights de "mike" sur -#weechat sur le serveur IRC libera : +Pour le tampon courant : ---- -/buffer_autoset add irc.libera.#weechat hotlist_max_level_nicks_add mike:2 +/buffer setauto hotlist_max_level_nicks_add joe:2,mike:2 ---- -Pour l'appliquer à l'ensemble du serveur libera : +Pour tous les canaux sur le serveur "libera": ---- -/buffer_autoset add irc.libera hotlist_max_level_nicks_add mike:2 +/set weechat.buffer.irc.libera.*.hotlist_max_level_nicks_add joe:2,mike:2 ---- -Pour plus d'exemples, voir `+/help buffer_autoset+`. - [[irc_target_buffer]] === Comment puis-je changer le serveur cible pour les commandes avec des tampons mélangés (comme le tampon avec les serveurs) ? diff --git a/doc/fr/weechat_user.fr.adoc b/doc/fr/weechat_user.fr.adoc index 13ec9bb41..24ed5368d 100644 --- a/doc/fr/weechat_user.fr.adoc +++ b/doc/fr/weechat_user.fr.adoc @@ -2276,16 +2276,9 @@ Par exemple pour désactiver les « highlights » de "joe" et "mike" sur le ta courant : ---- -/buffer set hotlist_max_level_nicks_add joe:2,mike:2 +/buffer setauto hotlist_max_level_nicks_add joe:2,mike:2 ---- -[NOTE] -La propriété de tampon "hotlist_max_level_nicks" n'est pas sauvegardée dans la -configuration. + -Vous pouvez facilement la sauvegarder avec le script _buffer_autoset.py_ : vous -pouvez l'installer avec `+/script install buffer_autoset.py+` et obtenir de l'aide -avec `+/help buffer_autoset+`. - [[highlights]] === Highlights @@ -2310,16 +2303,9 @@ Ceci peut aussi être défini avec la propriété de tampon "highlight_disable_r Même exemple, spécifique au tampon courant : ---- -/buffer set highlight_disable_regex <flash.*> +/buffer setauto highlight_disable_regex <flash.*> ---- -[NOTE] -La propriété de tampon "highlight_disable_regex" n'est pas sauvegardée dans la -configuration. + -Vous pouvez facilement la sauvegarder avec le script _buffer_autoset.py_ : vous -pouvez l'installer avec `+/script install buffer_autoset.py+` et obtenir de l'aide -avec `+/help buffer_autoset+`. - [[highlights_words]] ==== Ajouter des mots pour le « highlight » @@ -2377,16 +2363,9 @@ Par exemple pour forcer le highlight sur tous les messages dans le canal courant : ---- -/buffer set highlight_regex .* +/buffer setauto highlight_regex .* ---- -[NOTE] -La propriété de tampon "highlight_regex" n'est pas sauvegardée dans la -configuration. + -Vous pouvez facilement la sauvegarder avec le script _buffer_autoset.py_ : vous -pouvez l'installer avec `+/script install buffer_autoset.py+` et obtenir de l'aide -avec `+/help buffer_autoset+`. - [[buffer_logging]] === Enregistrement des tampons diff --git a/doc/it/weechat_faq.it.adoc b/doc/it/weechat_faq.it.adoc index e0234abc4..fb563fa10 100644 --- a/doc/it/weechat_faq.it.adoc +++ b/doc/it/weechat_faq.it.adoc @@ -1012,41 +1012,25 @@ Altri script correlati: [[disable_highlights_for_specific_nicks]] === How can I disable highlights for specific nicks? -// TRANSLATION MISSING You can use the link:weechat_user.it.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: +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: +For the current buffer: ---- -/script install buffer_autoset.py +/buffer setauto hotlist_max_level_nicks_add joe:2,mike:2 ---- -For example, to permanently disable highlights from "mike" on #weechat -on the IRC server libera: +For all channels on server "libera": ---- -/buffer_autoset add irc.libera.#weechat hotlist_max_level_nicks_add mike:2 +/set weechat.buffer.irc.libera.*.hotlist_max_level_nicks_add joe:2,mike:2 ---- -To apply it to the entire libera server instead: - ----- -/buffer_autoset add irc.libera hotlist_max_level_nicks_add mike:2 ----- - -For more examples, see `+/help buffer_autoset+`. - [[irc_target_buffer]] === Come si può modificare il buffer destinazione per i comandi sui buffer uniti (come i buffer con i server)? diff --git a/doc/it/weechat_user.it.adoc b/doc/it/weechat_user.it.adoc index 108c1fb6d..e28536830 100644 --- a/doc/it/weechat_user.it.adoc +++ b/doc/it/weechat_user.it.adoc @@ -2460,14 +2460,9 @@ and for each nick the max hotlist level to trigger, possible levels are: For example to disable highlights from "joe" and "mike" on current buffer: ---- -/buffer set hotlist_max_level_nicks_add joe:2,mike:2 +/buffer setauto hotlist_max_level_nicks_add joe:2,mike:2 ---- -[NOTE] -The buffer property "hotlist_max_level_nicks" is not saved in configuration. + -You can easily save it with the script _buffer_autoset.py_: you can install it -with `+/script install buffer_autoset.py+` and get help with `+/help buffer_autoset+`. - // TRANSLATION MISSING [[highlights]] === Highlights @@ -2494,15 +2489,9 @@ This can also be set with the buffer property "highlight_disable_regex". Same example, specific to the current buffer: ---- -/buffer set highlight_disable_regex <flash.*> +/buffer setauto highlight_disable_regex <flash.*> ---- -[NOTE] -The buffer property "highlight_disable_regex" is not saved in configuration. + -You can easily save it with the script _buffer_autoset.py_: you can install it -with `+/script install buffer_autoset.py+` and get help with -`+/help buffer_autoset+`. - [[highlights_words]] ==== Add words to highlight @@ -2557,14 +2546,9 @@ You can force highlight using a regular expression with the buffer property For example to force the highlight on all messages in the current buffer: ---- -/buffer set highlight_regex .* +/buffer setauto highlight_regex .* ---- -[NOTE] -The buffer property "highlight_regex" is not saved in configuration. + -You can easily save it with the script _buffer_autoset.py_: you can install it -with `+/script install buffer_autoset.py+` and get help with `+/help buffer_autoset+`. - // TRANSLATION MISSING [[buffer_logging]] === Buffer logging diff --git a/doc/ja/weechat_faq.ja.adoc b/doc/ja/weechat_faq.ja.adoc index 205ecece6..2c8fde776 100644 --- a/doc/ja/weechat_faq.ja.adoc +++ b/doc/ja/weechat_faq.ja.adoc @@ -953,34 +953,22 @@ link:weechat_user.ja.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). -ハイライトを無効化するだけなら、このプロパティを 2 に設定してください: +ハイライトを無効化するだけなら、このプロパティを 2 に設定してください. ----- -/buffer set hotlist_max_level_nicks_add joe:2,mike:2 ----- - -このバッファプロパティは設定に保存されません。このバッファプロパティを自動的に適用するには、_buffer_autoset.py_ -スクリプトが必要です: - ----- -/script install buffer_autoset.py ----- - -例えば、IRC サーバ libera のチャンネル #weechat に参加している "mike" -の発言に対してハイライトを永久的に無効化するには以下のように設定します: +// TRANSLATION MISSING +For the current buffer: ---- -/buffer_autoset add irc.libera.#weechat hotlist_max_level_nicks_add mike:2 +/buffer setauto hotlist_max_level_nicks_add joe:2,mike:2 ---- -この設定をすべての libera サーバのバッファに対して適用するには以下のように設定します: +// TRANSLATION MISSING +For all channels on server "libera": ---- -/buffer_autoset add irc.libera hotlist_max_level_nicks_add mike:2 +/set weechat.buffer.irc.libera.*.hotlist_max_level_nicks_add joe:2,mike:2 ---- -これ以外の例は `+/help buffer_autoset+` を参照してください。 - [[irc_target_buffer]] === どうすればマージされたバッファ内であるコマンドを発行するターゲットバッファを変更できますか。 diff --git a/doc/ja/weechat_user.ja.adoc b/doc/ja/weechat_user.ja.adoc index fed231d9b..d367055c9 100644 --- a/doc/ja/weechat_user.ja.adoc +++ b/doc/ja/weechat_user.ja.adoc @@ -2373,14 +2373,9 @@ irc サーバ "libera" に含まれる全てのバッファに対して設定す 例えば現在のバッファで "joe" と "mike" からのメッセージに対するハイライトを無効化するには以下のように設定します: ---- -/buffer set hotlist_max_level_nicks_add joe:2,mike:2 +/buffer setauto hotlist_max_level_nicks_add joe:2,mike:2 ---- -[NOTE] -バッファプロパティ "hotlist_max_level_nicks" は設定ファイルに保存されません。 + -これを保存するには _buffer_autoset.py_ スクリプトを使ってください: このスクリプトをインストールするには -`+/script install buffer_autoset.py+` コマンドを使い、ヘルプを見るには `+/help buffer_autoset+` コマンドを使ってください。 - [[highlights]] === ハイライト @@ -2406,14 +2401,9 @@ This can also be set with the buffer property "highlight_disable_regex". Same example, specific to the current buffer: ---- -/buffer set highlight_disable_regex <flash.*> +/buffer setauto highlight_disable_regex <flash.*> ---- -[NOTE] -バッファプロパティ "highlight_disable_regex" は設定ファイルに保存されません。 + -これを保存するには _buffer_autoset.py_ スクリプトを使ってください: このスクリプトをインストールするには -`+/script install buffer_autoset.py+` コマンドを使い、ヘルプを見るには `+/help buffer_autoset+` コマンドを使ってください。 - [[highlights_words]] ==== ハイライトする単語の追加 @@ -2468,14 +2458,9 @@ Same example, specific to the current buffer: 例えば現在のバッファ宛のすべてのメッセージをハイライトするには以下のように設定します: ---- -/buffer set highlight_regex .* +/buffer setauto highlight_regex .* ---- -[NOTE] -バッファプロパティ "highlight_regex" は設定ファイルに保存されません。 + -これを保存するには _buffer_autoset.py_ スクリプトを使ってください: このスクリプトをインストールするには -`+/script install buffer_autoset.py+` コマンドを使い、ヘルプを見るには `+/help buffer_autoset+` コマンドを使ってください。 - // TRANSLATION MISSING [[buffer_logging]] === Buffer logging diff --git a/doc/pl/weechat_faq.pl.adoc b/doc/pl/weechat_faq.pl.adoc index bbf41d369..a761b8edf 100644 --- a/doc/pl/weechat_faq.pl.adoc +++ b/doc/pl/weechat_faq.pl.adoc @@ -927,34 +927,22 @@ link:weechat_user.pl.html#max_hotlist_level_nicks[hotlist_max_level_nicks_add ^ do ustawienia maksymalnego poziomu hotlisty dla niektórych nicków, dla buforów lub grup buforów (jak serwery IRC). -W celu wyłączenia tylko podświetleń wystarczy ustawić ja na 2: +W celu wyłączenia tylko podświetleń wystarczy ustawić ja na 2. ----- -/buffer set hotlist_max_level_nicks_add joe:2,mike:2 ----- - -To utawienie nie jest zapisywane jednak w konfiguracji. -W celu automatycznego ustawiania tej właściwości należy użyć skryptu _buffer_autoset.py_: - ----- -/script install buffer_autoset.py ----- - -Na przykład w celu wyłączenia powiadomień od "mike" na #weechat w sieci libera: -on the IRC server libera: +// TRANSLATION MISSING +For the current buffer: ---- -/buffer_autoset add irc.libera.#weechat hotlist_max_level_nicks_add mike:2 +/buffer setauto hotlist_max_level_nicks_add joe:2,mike:2 ---- -Dla całego serwera libera: +// TRANSLATION MISSING +For all channels on server "libera": ---- -/buffer_autoset add irc.libera hotlist_max_level_nicks_add mike:2 +/set weechat.buffer.irc.libera.*.hotlist_max_level_nicks_add joe:2,mike:2 ---- -Więcej przykładów można znaleźć wykonując komende `+/help buffer_autoset+`. - [[irc_target_buffer]] === Jak mogę zmienić docelowy bufor dla komendy w połączonym buforze (jak bufor z serwerami)? diff --git a/doc/pl/weechat_user.pl.adoc b/doc/pl/weechat_user.pl.adoc index af92dca73..ce52ff1d7 100644 --- a/doc/pl/weechat_user.pl.adoc +++ b/doc/pl/weechat_user.pl.adoc @@ -2253,14 +2253,9 @@ z ustawonym dla każdego z nich maksymalnym poziomem hotlisty, możliwe poziomy Na przykład, żeby wyłączyć podświetlenia od "joe" oraz "mike" w obecnym buforze: ---- -/buffer set hotlist_max_level_nicks_add joe:2,mike:2 +/buffer setauto hotlist_max_level_nicks_add joe:2,mike:2 ---- -[NOTE] -Właściwość bufora "hotlist_max_level_nicks" nie jest zapisywana w konfiguracji. + -Można ją zapisać za pomocą skryptu _buffer_autoset.py_: można go zaintalować za pomocą -`+/script install buffer_autoset.py+`, informacje o używaniu `+/help buffer_autoset+`. - [[highlights]] === Podświetlenia @@ -2285,14 +2280,9 @@ Można to także osiągnąć za pomocą właściwości bufora "highlight_disable Ten sam przykład, tylko dla konkretnego bufora: ---- -/buffer set highlight_disable_regex <flash.*> +/buffer setauto highlight_disable_regex <flash.*> ---- -[NOTE] -Właściwość bufora "highlight_disable_regex" nie jest zapisywana w konfiguracji. + -Można ją zapisać za pomocą skryptu _buffer_autoset.py_: można go zaintalować za pomocą -`+/script install buffer_autoset.py+`, informacje o używaniu `+/help buffer_autoset+`. - [[highlights_words]] ==== Dodawanie słów do podświetleń @@ -2346,14 +2336,9 @@ Możesz wymusić podświetlenia używając wyrażenia regularnego z właściwoś Na przykład żeby wymusić podświetlenie dla wszytkich wiadomości w obecnym buforze: ---- -/buffer set highlight_regex .* +/buffer setauto highlight_regex .* ---- -[NOTE] -Właściwość bufora "highlight_regex" nie jest zapisywana w konfiguracji. + -Można ją zapisać za pomocą skryptu _buffer_autoset.py_: można go zaintalować za pomocą -`+/script install buffer_autoset.py+`, informacje o używaniu `+/help buffer_autoset+`. - [[buffer_logging]] === Bufor logera diff --git a/doc/sr/weechat_faq.sr.adoc b/doc/sr/weechat_faq.sr.adoc index 572b214c7..f8e04718c 100644 --- a/doc/sr/weechat_faq.sr.adoc +++ b/doc/sr/weechat_faq.sr.adoc @@ -821,32 +821,22 @@ link:weechat_user.sr.html#max_hotlist_level_nicks[hotlist_max_level_nicks_add ^ можете користити да за неке надимке подесите максимални ниво вруће листе, по баферу, или по групи бафера (као на пример IRC сервери). -Ако само желите да искључите истицања, треба да је поставите на 2: +Ако само желите да искључите истицања, треба да је поставите на 2. ----- -/buffer set hotlist_max_level_nicks_add joe:2,mike:2 ----- - -Међутим, ова особина бафера се не чува у конфигурацији. Ако желите да се ове особине бафера аутоматски поново примене, биће вам потребна скрипта _buffer_autoset.py_: - ----- -/script install buffer_autoset.py ----- - -На пример, ако за стално желите да искључите истицања од надимка „mike” са #weechat на IRC серверу libera: +// TRANSLATION MISSING +For the current buffer: ---- -/buffer_autoset add irc.libera.#weechat hotlist_max_level_nicks_add mike:2 +/buffer setauto hotlist_max_level_nicks_add joe:2,mike:2 ---- -Ако уместо овога желите да се примени на комплетан libera сервер: +// TRANSLATION MISSING +For all channels on server "libera": ---- -/buffer_autoset add irc.libera hotlist_max_level_nicks_add mike:2 +/set weechat.buffer.irc.libera.*.hotlist_max_level_nicks_add joe:2,mike:2 ---- -За још примера, погледајте `+/help buffer_autoset+`. - [[irc_target_buffer]] === Како могу да променим циљни бафер за команде над спојеним баферима (као што је бафер са серверима)? diff --git a/doc/sr/weechat_user.sr.adoc b/doc/sr/weechat_user.sr.adoc index 228f30a29..03c95a29f 100644 --- a/doc/sr/weechat_user.sr.adoc +++ b/doc/sr/weechat_user.sr.adoc @@ -2111,13 +2111,9 @@ include::{autogendir}/autogen_user_options.sr.adoc[tag=charset_options] На пример, ако желите да искључите истицања од „joe” и „mike” у текућем баферу: ---- -/buffer set hotlist_max_level_nicks_add joe:2,mike:2 +/buffer setauto hotlist_max_level_nicks_add joe:2,mike:2 ---- -[NOTE] -Особина бафера „hotlist_max_level_nicks” се не чува у конфигурацији. + -Лако можете да је сачувате скриптом _buffer_autoset.py_: инсталирате је командом `+/script install buffer_autoset.py+`, а помоћ добијате са `+/help buffer_autoset+`. - [[highlights]] === Истицања @@ -2141,13 +2137,9 @@ include::{autogendir}/autogen_user_options.sr.adoc[tag=charset_options] Исти пример, који функционише само на текућем баферу: ---- -/buffer set highlight_disable_regex <flash.*> +/buffer setauto highlight_disable_regex <flash.*> ---- -[NOTE] -Особина бафера „highlight_disable_regex” се не чува у конфигурацији. + -Лако можете да је сачувате скриптом _buffer_autoset.py_: инсталирате је командом `+/script install buffer_autoset.py+`, а помоћ добијате са `+/help buffer_autoset+`. - [[highlights_words]] ==== Додавање речи које се истичу @@ -2189,13 +2181,9 @@ include::{autogendir}/autogen_user_options.sr.adoc[tag=charset_options] На пример, да форсирате истицање свих порука у текућем баферу: ---- -/buffer set highlight_regex .* +/buffer setauto highlight_regex .* ---- -[NOTE] -Особина бафера „highlight_regex” се не чува у конфигурацији. + -Лако можете да је сачувате скриптом _buffer_autoset.py_: инсталирате је командом `+/script install buffer_autoset.py+`, а помоћ добијате са `+/help buffer_autoset+`. - [[buffer_logging]] === Логовање бафера |