I'm trying to make a trigger so that I can take anything that is
<black foreground> <black background>
into
<custom color foreground> <black background>
without changing the entire line, just the bits where the foreground color and background color are identical. So far, I can make it change the entire line, or none of it, but solely the black on black parts.
This one doesn't work at all
and this one changes the entire line
<black foreground> <black background>
into
<custom color foreground> <black background>
without changing the entire line, just the bits where the foreground color and background color are identical. So far, I can make it change the entire line, or none of it, but solely the black on black parts.
This one doesn't work at all
<triggers>
<trigger
back_colour="8"
custom_colour="17"
enabled="y"
keep_evaluating="y"
match=".*?"
match_back_colour="y"
match_bold="y"
match_text_colour="y"
regexp="y"
sequence="100"
text_colour="8"
other_text_colour="dimgray"
>
</trigger>
</triggers>
and this one changes the entire line
<triggers>
<trigger
back_colour="8"
custom_colour="17"
enabled="y"
keep_evaluating="y"
match=".*"
match_back_colour="y"
match_bold="y"
match_text_colour="y"
regexp="y"
sequence="100"
text_colour="8"
other_text_colour="dimgray"
>
</trigger>
</triggers>