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
1 answer

Identify TODO tags in Eclipse

I was wondering whether Eclipse supports some sort of identification (number or name) for TODO tags? Concretely I want to be able refer to other TODO's. Example (freely invented example of why this would be useful and how it could work): Original…
Samuel
  • 18,286
  • 18
  • 52
  • 88
0
votes
1 answer

TODO items show up multiple times in Visual Studio 2008

The Task List in Visual Studio 2008 is behaving a little wacky for me. Some tasks are only shown once, but some are shown several times. For example, // TODO: Change this to 9000.0 when... appears only once in my code (AcceptanceTests.cpp line 74),…
sgryzko
  • 2,397
  • 2
  • 22
  • 37
0
votes
1 answer

How to not show @todo task tags on eclipse ( eclipse-php on Mac OS )

I want the task marks on the right to not show. The notepad icon on the left is enough, and the blue marks on the right mix up with the green marks of occurrences, so it clutters the view and I can't distinguish them at first sight. How do I turn @…
Petruza
  • 11,744
  • 25
  • 84
  • 136
0
votes
1 answer

Native interface to Ticket systems

Does any web bug/ticket system (Jira, Google Code, github, etc) offer a native plugin to add new tickets and update existing ones? My current tickets are usually few lines long, and the overhead of using the GUI to enter them is high. Especially…
notnoop
  • 58,763
  • 21
  • 123
  • 144
0
votes
1 answer

What is the simplest way of tracking issues and ToDo 's using Git?

Is there any built in issue tracking or ToDo tracking with git? Or is there a simple way to easily manage tasks and bugs using git?
d-_-b
  • 21,536
  • 40
  • 150
  • 256
0
votes
1 answer

What's the best way to Bookmark/List TODOs in VS2010 for Teams?

as VS2010 Task List only scans active file for Comment Tokens and Bookmarks may make troubles if developers have there project on different drives/paths, what would be the best way to manage open TODOs for projects where more than just two people…
Sagi
  • 783
  • 1
  • 8
  • 17
0
votes
1 answer

Is it possible to reject check in if files contain TODO in TFS/TeamCity?

Is it possible to reject the check in of files or break the build if a file is checked in which contains a TODO (or certain string) using TFS/TeamCity? It would need to ignore any files which already contained the TODO and would only be break the…
Sam Holder
  • 32,535
  • 13
  • 101
  • 181
-1
votes
1 answer

How to get selected value from drop downlist in ReactJs?

i am not able to get the value from drop list the value that i am getting are wrong, they are reverse if i click complete it will show incomplete in console and vice verse const [status, setStatus] = useState(""); const handleChange = (e) => { …
Mohit Rakh
  • 25
  • 2
-1
votes
2 answers

Eclipse: How to remove all TODO tagged comments?

In Eclipse, is there any way, e.g., built-in functionality or short cuts of Eclipse, to REMOVE ALL comments tagged with TODO? So far I can click and open each file via the matched TODO items as shown in the picture, but it is impossible to finish…
ThomasIsCoding
  • 96,636
  • 9
  • 24
  • 81
-1
votes
4 answers

How to add code description that are not comments?

How do you add code description like Todo's or put a note in the code that is not a comment, i.e. "//" or "/* ... */""? Sorry for the basic question, I forgot the terminology and therefore cant find what it's called online.
MrHero
  • 3
  • 1
  • 5
-2
votes
1 answer

Several todo lists on one page, how to get multiple submissions on the same page

I have a weekly planner that is essentially several todo lists on one page. I have one that functions, but I do not know how to make it so each one responds to each individual input field and respective ul and li. Currently the one that functions…
-3
votes
1 answer

I am having problems when trying to make a to-do list

I am trying to create a javascript to-do list, but I am having a problem: const inputEl = document.querySelector('form'); const buttonEl = document.querySelector('.todo-button'); const todoUl =…
Gad Ashell
  • 25
  • 4
1 2 3
14
15