Todo tags do not work on eclipse and pydev

I am using eclipse 3.7.0 for fedora and pydev 2.2.2

I tried to use todo tags but it does not work. todo tags in window> preferences look great. I can add a left click next to the line.

consult

+7
source share
2 answers

C # TODO comments will only generate jobs if:

  • The code is in the source folder (i.e.: in PYTHONPATH)

  • You have built-in developers (from time to time the assembly starts manually).

Link: http://pydev.org/manual_adv_tasks.html

The getting started guide ( http://pydev.org/manual_101_root.html ) contains instructions on how to properly configure PyDev so that things like todo tasks work correctly

+13
source

Make sure you write:

#TODO: This is my todo. 

Otherwise it will not work. Note the colon after "O".

+13
source

All Articles