PyCharm 2017.3 Help

Creating and Registering File Types

Introduction

You can create custom file types to enable parsing these files in the editor by defining highlighting schemes for keywords, comments, numbers, etc. To enable PyCharm decide how to treat a file, you need to associate each file type with relevant extensions.

Creating a file type

To create a new file type

  1. Open the Settings/Preferences dialog by choosing File | Settings for Windows and Linux or PyCharm | Preferences for macOS. Then select Editor | File Types. Find more on page Accessing Settings.
  2. On the File Types page that opens, click add.
  3. In the New File Type dialog box that opens, specify the name of the new type and optionally provide a description.
  4. In the Syntax Highlighting section, specify the characters for line and block comments, hex prefixes, and number postfixes.
  5. In the Keywords section, specify sets of keywords using the tabs from 1 to 4. To do so, select the desired tab, click add (Alt+Insert), and enter the keyword name in the Add New Keyword dialog box that opens.

Registering a file type

To associate a file type with extensions

  1. Open the File Types settings page.
  2. From the Recognized File Types list, select the desired type.
  3. In the Registered Patterns area, complete the list of patterns that define the file extensions to indicate that the corresponding files belong to the selected type. Do one of the following:
    • To register a new pattern, click add (Alt+Insert) and enter the desired extension pattern in the Add Wildcard dialog box that opens.
    • To update a pattern, select it in the list, click the Edit button edit1 and make the necessary changes in the Edit Wildcard dialog box that opens.
    • To remove a pattern from the list, select it and click delete (Alt+Delete).
Last modified: 28 March 2018

See Also