How to prevent IntelliJ from showing generated cla...
# intellij
w
How to prevent IntelliJ from showing generated classes in
cmd+O
find classes
dialog (and in other places, like
find usages
)? The search is insanely polluted by all kinds of classes generated by Kapt, but I can’t seem to find a way of only searching in actual, non-generated sources. I feel like in Java it wasn’t an issue, but I might remember wrong
👀 1
z
You can create a “scope” that excludes generated code.
👀 1
w
Thanks, that works 🙂 I set `file:src//*`but I’m not sure that’s actually the best pattern. Shame I can’t find a way to peek built-in patterns