Highlighting updates. -word renamed to -full. Added new -word option

meaning to highlight only the found word in line. Removed -nonick
option but added -line which means pretty much the same. -actcolor
specifies what color to show in activity list, default is the same as
-color. Also uses the nick cache to match nickmasks faster.


git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1139 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2001-01-21 04:14:24 +00:00 committed by cras
commit 391a7e5710
6 changed files with 438 additions and 159 deletions

View file

@ -78,7 +78,13 @@ void format_create_dest(TEXT_DEST_REC *dest,
void format_newline(WINDOW_REC *window);
/* strip all color (etc.) codes from `input'. returns newly allocated string. */
/* Return how many characters in `str' must be skipped before `len'
characters of text is skipped. */
int strip_real_length(const char *str, int len,
int *last_color_pos, int *last_color_len);
/* strip all color (etc.) codes from `input'.
Returns newly allocated string. */
char *strip_codes(const char *input);
/* send a fully parsed text string for GUI to print */