benjaminRomano / todo-manager

Manage TODOs, NOTEs, etc. from inside Atom.
https://atom.io/packages/todo-manager
MIT License
4 stars 2 forks source link

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