How to exclude a file extension from IntelliJ IDEA search?

Robert Kusznier

Is there a way to exclude particular file extension from the results in IntelliJ IDEA's "Find in Path" dialog (invoked by CTRL + SHIFT + F)? I want to exclude all .css files.

Marquis Blount

In intellij 16 there is a section "File name Filter" to exclude an extension use !*.java. You can give more detailed patterns as well for example I use the pattern below to only return .java files except those with a name starting or ending with test. Pattern: !*test.java,*.java,!Test*.java

enter image description here

In recent versions of Intellij the GUI has been updated a bit but the same still applies see the "File mask" on the top right hand corner see image below:

enter image description here

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to exclude source code from coverage measurement in IntelliJ IDEA?

From Dev

Search string from JAR file global in Intellij Idea

From Dev

How to search for or navigate to a Java file type in IntelliJ IDEA 13?

From Dev

Exclude folders from Gradle project in IntelliJ IDEA

From Dev

makefile - how to exclude file extension suffix from a variable

From Dev

How do I exclude a specific extension from recursive file copying?

From Dev

How to exclude .class files from file search in Eclipse?

From Dev

With IntelliJ IDEA, how can I exclude a directory from a project without opening the IDE?

From Dev

How do I make an executable file from an intellij idea project?

From Dev

Exclude comments from search results in IntelliJ global search?

From Dev

Intellij exclude file from being compiled

From Dev

How to uppercase file name but exclude extension

From Dev

How to uppercase file name but exclude extension

From Dev

how search file with multiple criteria of extension of file

From Dev

How to detect file changed by myself in IntelliJ IDEA

From Dev

How to run Java scratch file in IntelliJ IDEA

From Dev

How to create the jspf file in intelliJ IDEA

From Dev

How to use the extension point of other plugin? (Intellij Idea)

From Dev

How to exclude webstorm files from search results

From Dev

OpenEJB: How to exclude jar from module search?

From Dev

How to exclude html links from WordPress search?

From Dev

How to Exclude Multiple Values from Search Results

From Dev

How to exclude a folder from a string search

From Dev

how to exclude a string from php regex search

From Dev

How to exclude some word from regexp search?

From Dev

How to force Intellij to highlight file with no extension as Bash?

From Dev

How to force Intellij to highlight file with no extension as Bash?

From Dev

How to pass arguments to Gradle from IntelliJ IDEA

From Dev

How to clone a project from Bitbucket into Intellij IDEA?

Related Related

  1. 1

    How to exclude source code from coverage measurement in IntelliJ IDEA?

  2. 2

    Search string from JAR file global in Intellij Idea

  3. 3

    How to search for or navigate to a Java file type in IntelliJ IDEA 13?

  4. 4

    Exclude folders from Gradle project in IntelliJ IDEA

  5. 5

    makefile - how to exclude file extension suffix from a variable

  6. 6

    How do I exclude a specific extension from recursive file copying?

  7. 7

    How to exclude .class files from file search in Eclipse?

  8. 8

    With IntelliJ IDEA, how can I exclude a directory from a project without opening the IDE?

  9. 9

    How do I make an executable file from an intellij idea project?

  10. 10

    Exclude comments from search results in IntelliJ global search?

  11. 11

    Intellij exclude file from being compiled

  12. 12

    How to uppercase file name but exclude extension

  13. 13

    How to uppercase file name but exclude extension

  14. 14

    how search file with multiple criteria of extension of file

  15. 15

    How to detect file changed by myself in IntelliJ IDEA

  16. 16

    How to run Java scratch file in IntelliJ IDEA

  17. 17

    How to create the jspf file in intelliJ IDEA

  18. 18

    How to use the extension point of other plugin? (Intellij Idea)

  19. 19

    How to exclude webstorm files from search results

  20. 20

    OpenEJB: How to exclude jar from module search?

  21. 21

    How to exclude html links from WordPress search?

  22. 22

    How to Exclude Multiple Values from Search Results

  23. 23

    How to exclude a folder from a string search

  24. 24

    how to exclude a string from php regex search

  25. 25

    How to exclude some word from regexp search?

  26. 26

    How to force Intellij to highlight file with no extension as Bash?

  27. 27

    How to force Intellij to highlight file with no extension as Bash?

  28. 28

    How to pass arguments to Gradle from IntelliJ IDEA

  29. 29

    How to clone a project from Bitbucket into Intellij IDEA?

HotTag

Archive