How to include multiple condition for intellij goland file mask?

Viewed 55

I use strings like !*main*.js to filter out some files. But what if on top of this, I need the files to have 'test' in the file name?
I tried the following but they won't work:
!*main*.js & *test*
!*main*.js && *test*
!*main*.js AND *test*
enter image description here

1 Answers
Related