todo-manager

Manage TODOs, NOTEs and more from inside your editor

benjaminRomano

15,395

24

0.2.10

MIT

GitHub

This package consumes the following services:

todo-manager package

Manage TODOs, NOTEs, etc. from inside Atom.

Note: This package requires bottom-dock

Commands

image

Config

Note: the config for todo-manager will be empty since the default values aren't saved to the config file. If you want to keep the default settings you will also need to include the values below:

"todo-manager":
    regexes: [
      {
        regexName: "TODO"
        regexString: "/\\b@?TODO:?\\s(.+$)/g"
      }
      {
        regexName: "NOTE"
        regexString: "/\\b@?NOTE:?\\s(.+$)/g"
      }
      {
        regexName: "FIXME"
        regexString: "/\\b@?FIXME:?\\s(.+$)/g"
      }
    ]
    ignoredNames: [
      "**/node_modules/**"
      "**/vendor/**"
      "**/bower_components/**"
    ]

Note:

Future Plans