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
0
votes
0 answers

.emacs file issues with org-mode TODO

I am customizing my ~/.emacs file. Specifically, I am customizing org-mode's TODO list feature to include more tasks. However, I keep receiving the following error: File mode specification error: (wrong-type-argument stringp\ (sequence "TODO"…
coltsfan
  • 21
  • 1
0
votes
0 answers

Eclipse Mars (Java) : Tasks view not showing my TODO tasks in my code comments

I've looked at every question I could find related to this issue and found nothing for Mars specifically (not sure if it matters), but more importantly nothing that resolved this problem for me. I'm not using AspectJ. I've configured the tasks view…
rogodeter
  • 460
  • 9
  • 19
0
votes
1 answer

Sublime Text Comments Syntax Regex tmLanguage / tmTheme TODO:

I would like to have the text TODO: as a different color within the comments for any language. I use the keyword TODO: with the packages TODOreview and SublimeLinter-annotations and It would be nice to differentiate the word TODO: from other…
moonman
  • 51
  • 1
  • 6
0
votes
2 answers

Add a todo list item in SPE (Stani's Python Editor)

How do I add a todo list item in Stani's Python Editor? I think it's something you type in together with the code and it automatically shows up the the todo list panel. However, I do not know the syntax.
Kit
  • 30,365
  • 39
  • 105
  • 149
0
votes
1 answer

A tracker for both bugs and (productive) todo items?

I began using a bugtracker (www.bugnotes.com) so I am new to this... And I am easily adding bugs, makes sense. However some of these bugs would be fixed if I were to implement a given feature or perform some refactoring. So how can I track todo-list…
Zombies
  • 25,039
  • 43
  • 140
  • 225
0
votes
1 answer

SonarQube Quality Gates: TODO comments

Using SonarQube's Quality Gates, is there a possibility to count the number of TODO comments in the code so that I can make the Jenkins build fail when there are too many TODOs?
Sandra
  • 3,560
  • 5
  • 24
  • 31
0
votes
1 answer

How to keep the memory of app after totally closing the app in Xcode

I am working on a to-do list app in Xcode. So what I want to do now is after I close the app and reopen it, I want to see the lists I created before I close it. I think this is about memory keeping of the app. So what can I do to save the lists I…
0
votes
1 answer

Can you generate a todo.txt file from \todo commands with Doxygen?

/// \todo Loop must be rewritten ... /// \todo Delete this loop Can Doxygen generate a todo.txt file containing these comments ?
anno
  • 5,970
  • 4
  • 28
  • 37
0
votes
1 answer

what is the alternative for taglist plugin in sonar?

We use Sonar 4.3 and want to show the list of tags we have used in our code (e.g. TODO, FIXME,...) In previous versions of sonar we have used the taglist-plugin, but the documentation [1] says its deprecated and does not mention any alternative/new…
domi
  • 2,167
  • 1
  • 28
  • 45
0
votes
1 answer

How can i search TODO lines in javascript files with resharper?

I am writing javascript codes and i want to add todo, note, bug etc. to .js or .aspx files. But Resharper 4.5 couln't find them. Is there any way to show these comments inside todo explorer? any help would be greatly appreciated Platform: VS.NET…
uzay95
  • 16,052
  • 31
  • 116
  • 182
0
votes
1 answer

Using appleDoc and ///TODO: comment

I'm working on a project that uses AppleDoc to generate documentation. I want to add some TODO comments in my code eg: ///TODO: Some stuff to be done -(void)myMethod:(id)myParam{ [self doSomeFancyStuff]; } The problem is that when I try to…
AnderCover
  • 2,488
  • 3
  • 23
  • 42
0
votes
1 answer

Using the // TODO comment with the Xcode IDE

Can some one tell me if this is how the IDE is supposed to work or if I am not understanding how the // TODO commenting feature works. When I place a // TODO, Xcode adds a TODO section in the jump bar. Multiple TODO's places multiple sections with…
Johnathon Sullinger
  • 7,097
  • 5
  • 37
  • 102
0
votes
1 answer

How can I get my Task List to display a list of my TODO statements?

I have a project that is "littered" with TODO statements in this format: //TODO - remove directive if needed later When I select View > Task List in that project, though, it is empty. Selecting Tools > Options... > Environment > Task List, "TODO"…
0
votes
1 answer

Eclipse tasks for a generic file

Is it possible to have tasks in Eclipse for a generic file containing text. I'm using Eclipse to write an essay and would like to use the task mechanism so that I can get back to the unfinished parts. For example: TODO: Check if this information is…
TheMeaningfulEngineer
  • 15,679
  • 27
  • 85
  • 143
0
votes
1 answer

Doxygen and preformatted text in \todo

I am trying to use some preformated text in a \todo (because I need a a font with a fixed character size). So I have tried using
, ,  ...
I indeed get a fixed width font, but the problem is that if I put a \todo flag…
gpalex
  • 826
  • 1
  • 11
  • 27
1 2 3
14
15