CLion
 
Get CLion
You are viewing the documentation for an earlier version of CLion.

TODO comments

Last modified: 23 September 2021

Default patterns: TODO and FIXME

Configure: Settings/Preferences | Editor | TODO

Tool window: View | Tool Windows | TODO

Sometimes, you need to mark parts of your code for future reference: areas of optimization and improvement, possible changes, questions to be discussed, and so on. CLion lets you add special types of comments that are highlighted in the editor, indexed, and listed in the TODO tool window. This way you and your teammates can keep track of issues that require attention.

Example of TODO comment

By default, there are two patterns recognized by CLion: TODO and FIXME in both lower and upper case. These patterns can be used inside line and block comments of any supported file type. You can modify the default patterns or add your own patterns if necessary.

To create a multiline TODO item, indent the comment lines that follow the initial line. Without the indent, lines are treated as regular comment lines. To disable multiline TODO items, in the Settings/Preferences dialog Ctrl+Alt+S, go to Editor | TODO and clear the Treat the indented text on the following lines as part of the same TODO checkbox.

https://resources.jetbrains.com/help/img/idea/2021.2/cl_multiline_todo.png
Gif

You can view all the available TODO items in the TODO tool window (View | Tool Windows | TODO). To jump to the location of the relevant comment in the source code, double-click the corresponding TODO item in the TODO tool window. To automatically jump to the location of the relevant comment every time you select the corresponding TODO item, right-click the TODO tool window title bar, point to View Options, and select Navigate with Single Click (this option is enabled by default).