Question

I wonder why I can't see my // TODO: descriptions in my Task View in Aptana.
When I rightclick at the line number and choose Add Task it works and I can see my task in the
Window > Show View > Tasks

But when I just write a comment like this //TODO: fix this line as soon as possible. Then it doesn't show up in the Task list.

When I check my preferences Window > Preferences > Aptana Studio > Tasks, there's TODO, XXX and FIXME in that list, so it looks like it should work, but it doesn't.

The code I'm working at is an Aptana Project Aswell.

Was it helpful?

Solution

The problem were that I had to change the type of the project in aptana.

The project was a Web project first, and WEB projects doesn't support TODO's in default. Change the project to a PHP project and it works.

Maybe you can fix this somehow to make Web projects support todo's but I fixed it by changing the project type.

OTHER TIPS

My current project is web based and you can create comments like

/**
 * TODO do some stuff here
 */

Aptana will recognize "TODO" keyword and will put colored rectangle(color is dependent on the editing theme set in preferences) on the right side of the screen next to the scrollbar.

To create task, right click on the line numbers vertical bar and context menu will appear. Click the Add task menu item. Once you do this it will appear in the tasks panel window.

Plus you can mark the task as completed or set priority, high, normal and low.

Aptana TODO tasks

If you want to define your own task type, you must first add it in preferences Window > Preferences > Aptana Studio > Tasks, then you can add a new configuration on Configure content in task view.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top