This article was inspired by a thread on Twitter started by Caitlyn Greffly
So, the problem is how do you manage your TODO list as you are coding? You are working on basic functionality in a component and having a working plan, either in a working flow diagram or a written list. How do you have those mental notes of TODO's? There are a few simple options:
- A handwritten list (who writes anymore?)
- A Markdown file in the project directory
- A Trello of Board is a good visual reminder, especially when coupled with the Trello mobile app.
VSCode Extensions
If you are using VSCode as your IDE, you already know there are a ton of extensions for almost everything you need. For a few months now, I have been using an extension called TODO Tree which displays a tree view in the explorer pane of VSCode. Clicking a TODO within the tree will open the file and put the cursor on the line containing the TODO.
Here is how it basically works. Install the extension from the link above and test it out by adding a TODO to your source code like this:
// TODO - todo note
or a FIXME note
// FIXME - fix something
Now let's explore the interface
Interface
Notice in the sidebar you now have a box for TODO Tree. There are several icons (see above) which give you different options to filter and display the list of TODO's or FIXME notes. When you click on any of these notes the source file will automatically open.
Highlight
One of the nicest features, in my option, is the ability to highlight the notes in the source code and color code the icons in the TODO Tree. This feature is well documented in the source code and I have provided my settings below. Just copy to your VSCode settings.json:
"todo-tree.customHighlight": {
"TODO": {
"icon": "check",
"type": "line",
"iconColour": "yellow",
"foreground": "red",
"background": "yellow",
},
"FIXME": {
"icon": "beaker",
"iconColour": "red",
"foreground": "white",
"background": "red"
}
},
Here is the result:
Give TODO Tree a try and if I can help with your configuration message me.
Top comments (2)
I use this extension; it's really useful. I'm now looking for a project-level, rather than document-level todo extension. Any recommendations?
I don't know any but if I look at the gif above it shows what you are looking for. The interface seems to have an option to switch to document level todos with a nice overview per file!