Hi, I think the dropdown for the images is really a good thing. I will take a look at it.
Unfortunately only the standard glob patterns are supported for file selections. Therefore it is not possible to only select files not matching a pattern. But you could add an if
statement in combination with a match
pipe to exclude those files in a second step:
<@ if not @{ :file | match('/not/') } @>
...
<@ end @>