DEV Community

Chuck
Chuck

Posted on

TODO list in VSCode

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

GIF of the Toolbox in Action.

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"
    }
  },
Enter fullscreen mode Exit fullscreen mode

Here is the result:

Screenshot.

Give TODO Tree a try and if I can help with your configuration message me.

Oldest comments (2)

Collapse
 
harryadney profile image
Martin Dimmock

I use this extension; it's really useful. I'm now looking for a project-level, rather than document-level todo extension. Any recommendations?

Collapse
 
mersadajan profile image
Mersad Ajanovic

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!