In IntelliJ 12, the FIXME comment is regarded as a normal comment with typo. How to make it known by IntelliJ IDEA just like TODO comment?
Asked
Active
Viewed 9,401 times
1 Answers
56
Edit TODO
pattern
In Settings/TODO press '+' to add a pattern, add the following pattern: \bfixme\b.*
, assign an icon if necessary, apply changes. This should solve your issue.

Basil Bourque
- 303,325
- 100
- 852
- 1,154

lena
- 90,154
- 11
- 145
- 150
-
3The same settings section also exists for Android Studio as well. It is located within Settings/Editor/TODO. At least for current versions the fixme-pattern already is preinstalled though. – olik79 Apr 16 '15 at 13:50
-
This also works for PyCharm ('fixme' is added by default, but you can add other patterns). – Shovalt May 14 '17 at 09:45