IntelliJ IDEA 2016.2 Help

Excluding Files from Project

On this page:

Basics

Sometimes you might need to exclude a single file from your project, so that it will be ignored by inspections, code completion, etc. This is done using the Mark as plain text action.

When a file is marked as plain text, IntelliJ IDEA does not use it anymore for code completion and navigation. Such file is shown as plain text in the editor, and is denoted with a special icon plain_text_icon in the Project tool window.

The reverse action is also available: you can return a file to its original type, using the Mark as <file type> action.

In the context of a PHP project, you can also exclude entire PHP archives (.phar files) to prevent multiple declaration conflicts between classes in a .phar archive and the corresponding classes in the installed vendors directory.

Marking a file as plain text

To mark a file as plain text, follow these steps

  1. In the Project tool window, select the desired file.
  2. On the context menu of the selection, choose Mark as plain text:
    mark_as_plain_text

Marking a file with its regular type

To mark a file with its regular type, follow these steps

  1. In the Project tool window, select the desired file, marked with plain_text_icon icon.
  2. On the context menu of the selection, choose Mark as <file type>:
    mark_as_file_type

Excluding a .phar archive from a project

To exclude a .phar archive from a project

  • In the Project tool window, select the required .phar archive and choose Exclude phar from project on the context menu of the selection.

See Also

Last modified: 23 November 2016