I am trying to make an alias for highlighting names using AddTrigger function. However, the AddTrigger function is parsing [[\b]] string that I'm using to delimit the words. The code I'm using is below.
What I'm trying to get is a trigger along the lines of "\bRollanz\b"
What's I'm getting instead:
Rollanz Something not displayable on the forum.
Thanks in advance.
blank=[[\b]]
highlightFormat=blank.."%1"..blank
triggerName="%1".."Highlight"
AddTrigger(triggerName, highlightFormat, "", trigger_flag.Enabled+trigger_flag.RegularExpression+trigger_flag.KeepEvaluating+trigger_flag.IgnoreCase+trigger_flag.Replace, custom_colour.Custom3, 0, "", "")
What I'm trying to get is a trigger along the lines of "\bRollanz\b"
What's I'm getting instead:
Thanks in advance.