Hi, I'm trying to write a regexp in order to capture some words to put them in color. I have a line like this in my .muttrc:
color body red default "\<etch\>|((L|l)enny)|((S|s)queeze)|((S|s)arge)|((P|p)otato)" I want to catch only etch, but not fetch nor fetchera (or whatever combination). So I tried the \<word\> syntax without success. I also tried the Perl way \bword\b which fails too. I'm no regex guru, so could someone help me please? Thanks in advance, Steve
