mirror of
https://github.com/irssi/irssi.git
synced 2026-08-11 04:43:34 +02:00
Ref #421 (Add an option to make /hilight case sensitive)
Allow use of /hilight -case exAMPle (compatible with other options)
Added matchcase to hilight config file (exemple: { text = exAMPle; matchcase = yes; } )
This commit is contained in:
parent
9fa3869a97
commit
d8a6e66699
3 changed files with 18 additions and 5 deletions
|
|
@ -23,6 +23,7 @@ struct _HILIGHT_REC {
|
|||
unsigned int nickmask:1; /* `text' is a nick mask */
|
||||
unsigned int fullword:1; /* match `text' only for full words */
|
||||
unsigned int regexp:1; /* `text' is a regular expression */
|
||||
unsigned int case_sensitive:1;/* `text' must match case */
|
||||
#ifdef HAVE_REGEX_H
|
||||
unsigned int regexp_compiled:1; /* should always be TRUE, unless regexp is invalid */
|
||||
regex_t preg;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue