26

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?

chance
  • 6,307
  • 13
  • 46
  • 70

1 Answers1

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.

screenshot of Preferences > Editor > TODO > Edit Pattern

Basil Bourque
  • 303,325
  • 100
  • 852
  • 1,154
lena
  • 90,154
  • 11
  • 145
  • 150
  • 3
    The 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