Intellij : Find usages , but exclude test files from results

前端 未结 4 1774
一整个雨季
一整个雨季 2021-01-30 10:06

Anyone knows how to exclude test files from find usages results ?

Like everything that is under : src/test/

4条回答
  •  生来不讨喜
    2021-01-30 10:27

    You are able to create a custom search Scope

    A scope is a subset of files, packages and/or directories in your project, to which you can limit the application of specific operations, e.g. search, code inspection, insertion of copyright notices, etc.

    Edit -> Find -> Find Usages Settings...
    

    Use pattern

    !file:*Test.java or !file:*Test.java&&!file:*Tests.java or !test:*.*&&!test:*

    All your scopes you can find

    Android Studio -> Preferences -> Appearance & Behavior -> Scopes  
    

    Also you can customise a pattern by using syntax

    [Skip generated pattern]

提交回复
热议问题