Questions tagged [todo]

TODO is often used in code comments to indicate a task that needs to be done. IDEs often highlight them. Please do not use this for questions about creating todo list applications.

TODOs are source-code comments, stating that something still needs to be done in that particular section of the program.

Different syntaxes are used for different languages. A typical C-style example would be:

// TODO: Fix this

It has been debated whether todo comments are to be considered good or bad practice.

Most IDEs have the facility of highlighting TODOs and/or displaying them in a separate view.

224 questions
13
votes
2 answers

List javascript tasks in Visual Studio Task list

Is there a way to configure Visual Studio 2008 to display TODO comments in .js files or script-tags in the task list? Now only todo comments from the C# code is displayed.
Endre
  • 175
  • 1
  • 9
13
votes
2 answers

How to disable git push when there are TODOs in code?

We are having an issue in our team and we have decided to check if there is a way or git command to reject git push where there are TODOs in the code. Any ideas? Thanks in advance.
hosseio
  • 1,142
  • 2
  • 12
  • 25
12
votes
2 answers

Xcode 7 - Swift TODO comments

Using Xcode 7 and Swift 2.0, I'm trying to use TODO comments like I would in Visual Studio with C#. I've found sites suggesting // MARK: comment here // TODO: comment here // FIXME: comment here but none of these seem to work. I'm checking the…
seanu13
  • 171
  • 1
  • 1
  • 5
12
votes
2 answers

How to set Netbeans Action Item filters to ignore third party folders?

I do not want to see errors and warnings for third party libraries in Netbeans Action Items list, so I created a filter as shown below: The filter is turned on, but I still see many items from node_modules folders. What am I doing wrong? How should…
JustAMartin
  • 13,165
  • 18
  • 99
  • 183
12
votes
2 answers

Is it possible to get org-mode to show breadcrumbs in agenda todo list?

In Emacs, I have a set of TODOs in the following format * H1 ** H2 *** H3 **** TODO X When I look at the agenda-todo view, it shows up only as TODO x. Is there any way to get the agenda view to display it as H1/H2/H3/TODO X ?
Rahul Gopinath
  • 808
  • 10
  • 24
12
votes
4 answers

TODO task netbeans php

I'm using netbeans to develop web applications using php and javascript. I was using eclipse and I could list all my tasks using the //TODO comment. I don't understand how does it works on netbeans. So is there a solution to create tasks using…
Ajouve
  • 9,735
  • 26
  • 90
  • 137
12
votes
3 answers

Can't see tasks in aptana

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:…
murum
  • 575
  • 4
  • 19
12
votes
5 answers

Best Todo list management software

I am looking for a simple, easy to use, effective todo list management. It will be better if I can link to my code where to make that todo change. Is there any open source solution for that?
fireball003
  • 1,909
  • 5
  • 20
  • 24
11
votes
6 answers

How to search through TODO comment list in IntelliJ IDEA?

I'm working on a huge project that has thousands of TODO items. So when I go to the TODO tool window in IntelliJ IDEA it shows all of them. How can I search for a specific one?
nadavgam
  • 2,014
  • 5
  • 20
  • 48
11
votes
5 answers

TODO: comments are not showing up in the Task List

I had to reinstall all my development tools after a hard drive failure and I'm having a problem with Visual Studio. I had a bunch of //TODO: items scattered throughout my projects and I can't get them to show up in my Task List under the User Tasks.…
Brandon
  • 68,708
  • 30
  • 194
  • 223
11
votes
2 answers

Mylyn Eclipse TODO integration

In Eclipse, I use the Mylyn plugin for viewing my open tickets from a repository. But, also in our code, we have some places where the TODO marker is view. The TODO markers show up on the "Tasks" pane, whereas the Mylyn view shows up in the "Task…
Jeff Storey
  • 56,312
  • 72
  • 233
  • 406
10
votes
2 answers

Highlight // TODO in XCode

XCode 4 recognizes comments like // TODO: comment or // FIXME: comment and displays it in the Class overview drop-down. Is there the possibility to highlight // TODO with a bright color in the source code, so one can quickly find open TODOs?
hgbnerd
  • 1,090
  • 1
  • 10
  • 11
10
votes
4 answers

TODO/FIXME plugin for Eclipse

In my project there are large no. of FIXME / TODO which are to addressed at some point of time. Actually there about 480 which can be seen from 'TASKS' list but not organised. I googled and found the Task Tag Decorator plugin. But unfortunately…
GustyWind
  • 3,026
  • 3
  • 41
  • 50
10
votes
2 answers

VS 2010 - cannot add a TODO token - Add is disabled?

Deleting works, but it does not enable the option to Add.
Victor Zakharov
  • 25,801
  • 18
  • 85
  • 151
9
votes
10 answers

Is there a nice task/todo app/system for developers out there?

I am looking for a really basic developer task/todo app or system. Are there any good ones out there? What are you using? All I need is a good overview and being able to add time and priority to my tasks.
Mattias
  • 3,907
  • 4
  • 28
  • 50