Text Filter regex - Filtering out comments that span multiple new lines

I would like Meld to ignore block quotes in languages like SQL, where the block quote may contain a newline. Is there any trick to configuring this, or would this require a code change?

So far I can get Meld to ignore

/*thing 1 thing 2*/

but not

/*thing 1 
thing 2*/

I’m using this regex:

/\*[\s\S]*\*/

…with the goal of ignoring any string starting with /* and ending with */


Because of how they’re implemented, Meld filters don’t support regexes that change the number of lines in the comparison file. You may be able to add \n to your middle character set to get what you want, but the resulting comparison may be wrong (and any related bugs are just straight-up wont-fix).