todo_r 0.7.2

Simple rust command line utility that keeps track of your todo comments in code
{
  // tags to search for. These are case-insensitive
  "tags": [
    "todo",
    "fix",
    "fixme"
  ],

  "styles": {
    "tags": {
      "fix": "red"
      "fixme": "red"
      "mayb": "magenta"
    }
  },

  // Default extension fall-back
  "default_ext": "sh",

  // custom comment types
  "comments": [
  ]
}