I'm trying to suppress the output from another plugin that conflicts with a current plugin. Now, I can suppress the output and grab the styles if I send to script after omit. Or I can not grab the style runs and just grab the plain line and use StopEvaluatingTriggers(true) to suppress the output from other plugins (assuming I understand how that function works).
However, I need both cases to be true. Is there a way that I'm missing that I can suppress the output from outside plugins AND keep the style runs? The code in question so far is this:
However, I need both cases to be true. Is there a way that I'm missing that I can suppress the output from outside plugins AND keep the style runs? The code in question so far is this:
<trigger group="scans"
regexp="y" match="^\s+ - (.*)$"
name="scanLine" omit_from_output="y"
send_to="14" sequence="10"
><send>
local scanned = "%1"
for _,v in ipairs(checkNames) do
if scanned:upper():find(v:upper()) then
if #dirTemp > 0 then
TSROutput[(#TSROutput+1)] = dirTemp
dirTemp = {}
end
TSROutput[(#TSROutput+1)] = TriggerStyleRuns
end
end</send>
</trigger>