diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2014-08-29 18:21:48 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2014-08-29 18:21:48 +0200 |
commit | dda2170d940645c223114b903afa6ef94ab9594d (patch) | |
tree | 3d6d1364c8f4b9a261a3f4cea559f3ea633addde /doc/pl/autogen | |
parent | 7b546bea2e374a20c52ffd71de51f91eba07256d (diff) | |
download | weechat-dda2170d940645c223114b903afa6ef94ab9594d.zip |
core: add another example of buffer name in /help filter
Diffstat (limited to 'doc/pl/autogen')
-rw-r--r-- | doc/pl/autogen/user/weechat_commands.asciidoc | 80 |
1 files changed, 40 insertions, 40 deletions
diff --git a/doc/pl/autogen/user/weechat_commands.asciidoc b/doc/pl/autogen/user/weechat_commands.asciidoc index d30b45e60..107b013ec 100644 --- a/doc/pl/autogen/user/weechat_commands.asciidoc +++ b/doc/pl/autogen/user/weechat_commands.asciidoc @@ -302,55 +302,55 @@ Przykłady (warunki): rename <nazwa> <nowa_nazwa> del <nazwa>|-all - list: wyświetla wszystkie filtry - enable: włącza filtry (filtry są domyślnie włączone) -disable: wyłącza filtry - toggle: przełącza filtry - nazwa: nazwa filtru - add: dodaje filtr - rename: zmienia nazwę filtru - del: usuwa filtr - -all: usuwa wszystkie filtry - bufor: oddzielona przecinkami lisa buforów, dla których filtr jest aktywny: - - jest to pełna nazwa zawierająca wtyczkę (przykład: "irc.freenode.#weechat") - - "*" oznacza wszystkie bufory - - nazwa zaczynająca się od '!' jest wykluczana - - nazwa może zaczynać się lub kończyć '*', aby dopasować wiele buforów - tagi: lista tagów oddzielona przecinkiem, np: "irc_join,irc_part,irc_quit" - - logiczne "i": użyj "+" pomiędzy tagami (na przykład: "nick_toto+irc_action") - - dozwolony jest znak "*" - - jeśli tag zaczyna się od '!', wtedy jest on wykluczony i NIE może znajdować się w wiadomości - regex: rozszerzone wyrażenie regularne POSIX do wyszukania w linii - - użyj '\t' do oddzielenia prefiksu od wiadomości, znaki specjalne jak '|' muszą zostać poprzedzone '\' np: '\|' - - jeśli wyrażenie zaczyna się od '!', wtedy pasujący wynik jest odwracany (użyj '\!', aby zacząć od '!') - - dwa wyrażenia są tworzone: jedno dla prefiksu, drugie dla wiadomości - - wielkość znaków nie ma znaczenia dla wyrażeń, jeśli zaczynają się od "(?-i)" wielkość znaków ma znaczenie - -Domyślny skrót klawiszowy alt+'=' włącza/wyłącza filtrowanie. - -Najczęściej używane tagi: - no_filter, no_highlight, no_log, log0..log9 (poziom logowania), + list: list all filters + enable: enable filters (filters are enabled by default) +disable: disable filters + toggle: toggle filters + name: filter name ("@" = enable/disable all filters in current buffer) + add: add a filter + rename: rename a filter + del: delete a filter + -all: delete all filters + buffer: comma separated list of buffers where filter is active: + - this is full name including plugin (example: "irc.freenode.#weechat" or "irc.server.freenode") + - "*" means all buffers + - a name starting with '!' is excluded + - wildcard "*" is allowed + tags: comma separated list of tags, for example "irc_join,irc_part,irc_quit" + - logical "and": use "+" between tags (for example: "nick_toto+irc_action") + - wildcard "*" is allowed + - if tag starts with '!', then it is excluded and must NOT be in message + regex: POSIX extended regular expression to search in line + - use '\t' to separate prefix from message, special chars like '|' must be escaped: '\|' + - if regex starts with '!', then matching result is reversed (use '\!' to start with '!') + - two regular expressions are created: one for prefix and one for message + - regex are case insensitive, they can start by "(?-i)" to become case sensitive + +The default key alt+'=' toggles filtering on/off. + +Tags most commonly used: + no_filter, no_highlight, no_log, log0..log9 (log level), notify_none, notify_message, notify_private, notify_highlight, - nick_xxx (xxx to nick w wiadomości), prefix_nick_ccc (ccc to kolor nicka), - host_xxx (xxx to nazwa użytkownika + host w wiadomości), - irc_xxx (xxx ito nazwa komendy lub numer, zobacz /server raw lub /debug tags), + nick_xxx (xxx is nick in message), prefix_nick_ccc (ccc is color of nick), + host_xxx (xxx is username + host in message), + irc_xxx (xxx is command name or number, see /server raw or /debug tags), irc_numeric, irc_error, irc_action, irc_ctcp, irc_ctcp_reply, irc_smart_filter, away_info. -Aby zobaczyć listę tagów w liniach buforów wykonaj: /debug tags +To see tags for lines in buffers: /debug tags -Przykłady: - użyj inteligentnego filtru we wszystkich buforach IRC: +Examples: + use IRC smart filter on all buffers: /filter add irc_smart * irc_smart_filter * - użyj inteligentnego filtru we wszystkich buforach IRC poza tymi zawierającymi "#weechat" w nazwie: + use IRC smart filter on all buffers except those with "#weechat" in name: /filter add irc_smart *,!*#weechat* irc_smart_filter * - filtruj wszystkie wiadomości IRC o join/part/quit: + filter all IRC join/part/quit messages: /filter add joinquit * irc_join,irc_part,irc_quit * - filtruj nicki wyświetlane przy wejściu na kanał albo za pomocą /names: + filter nicks displayed when joining channels or with /names: /filter add nicks * irc_366 * - filtruj nick "toto" na kanale IRC #weechat: + filter nick "toto" on IRC channel #weechat: /filter add toto irc.freenode.#weechat nick_toto * - filtruj wejścia/akcje IRC od użytkownika "toto": + filter IRC join/action messages from nick "toto": /filter add toto * nick_toto+irc_join,nick_toto+irc_action * - filtruj linie zawierające fraze "weechat sucks" na kanale IRC #weechat: + filter lines containing "weechat sucks" on IRC channel #weechat: /filter add sucks irc.freenode.#weechat * weechat sucks ---- |