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 */