diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2012-01-22 13:48:42 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2012-01-22 13:48:42 +0100 |
commit | 5f6df8021b73c1da27161d238cd35180cce29727 (patch) | |
tree | dcb79e7db0ee27e94c8b433c68a5e2b2781a7c9f /doc/de/autogen/user/weechat_options.txt | |
parent | 51491469e5c6311ccd9dd10830f62fd436af754f (diff) | |
download | weechat-5f6df8021b73c1da27161d238cd35180cce29727.zip |
core: add support of flags in regular expressions and highlight options, add irc options to customize/disable default nick highlight (task #11128)
New functions in C plugin API:
- string_regex_flags
- string_regcomp
New irc options:
- irc.look.highlight_server
- irc.look.highlight_channel
- irc.look.highlight_pv
Regex flags are supported in following options/commands:
- option weechat.look.highlight
- option weechat.look.highlight_regex
- options irc.look.highlight_{server|channel|pv}
- option relay.network.allowed_ips
- core command /filter
- irc command /list
- irc command /ignore
- rmodifier command /rmodifier
Diffstat (limited to 'doc/de/autogen/user/weechat_options.txt')
-rw-r--r-- | doc/de/autogen/user/weechat_options.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/de/autogen/user/weechat_options.txt b/doc/de/autogen/user/weechat_options.txt index 38c4e12bc..bdb588f30 100644 --- a/doc/de/autogen/user/weechat_options.txt +++ b/doc/de/autogen/user/weechat_options.txt @@ -449,12 +449,12 @@ ** Werte: on, off (Standardwert: `off`) * [[option_weechat.look.highlight]] *weechat.look.highlight* -** Beschreibung: `Durch Kommata getrennte Liste der hervorzuhebenden Wörter (Groß-/Kleinschreibung wird nicht beachtet. Die Schlagwörter können mit "*", als Joker, beginnen oder enden)` +** Beschreibung: `comma separated list of words to highlight; case insensitive comparison (use "(?-i)" at beginning of words to make them case sensitive), words may begin or end with "*" for partial match; example: "test,(?-i)*toto*,flash*"` ** Typ: Zeichenkette ** Werte: beliebige Zeichenkette (Standardwert: `""`) * [[option_weechat.look.highlight_regex]] *weechat.look.highlight_regex* -** Beschreibung: `Suchmuster (regulärer Ausdrück) dass genutzt werden soll um zu überprüfen ob eine Nachricht ein Highlight enthält oder nicht. Mindestens eine Zeichenkette muss dabei auf das Suchmuster passen (alphanumerisch, "-", "_" oder "|"), das Suchmuster unterscheidet zwischen Groß-und Kleinschreibung. Beispiel: "FlashCode|flashy"` +** Beschreibung: `regular expression used to check if a message has highlight or not, at least one match in string must be surrounded by word chars (alphanumeric, "-", "_" or "|"), regular expression is case insensitive (use "(?-i)" at beginning to make it case sensitive), examples: "flashcode|flashy", "(?-i)FlashCode|flashy"` ** Typ: Zeichenkette ** Werte: beliebige Zeichenkette (Standardwert: `""`) |