A todo CLI
npm install @shwilliam/todoA todo CLI




* @shwilliam/todo
* Usage
* Commands
``sh-session`
$ npm install -g @shwilliam/todo
$ t COMMAND
running command...
$ t (-v|--version|version)
@shwilliam/todo/0.1.1 darwin-x64 node-v14.1.0
$ t --help [COMMAND]
USAGE
$ t COMMAND
...
* t add TODO
* [t autocomplete [SHELL]](#t-autocomplete-shell)t done INDEX
* t help [COMMAND]
* [](#t-help-command)t list [FILTER]
* [](#t-list-filter)t remove TARGET
* t todo [INDEX]
* [](#t-todo-index)
add todo
`
USAGE
$ t add TODO
ARGUMENTS
TODO todo text
`
_See code: src/commands/add.ts_
display autocomplete installation instructions
`
USAGE
$ t autocomplete [SHELL]
ARGUMENTS
SHELL shell type
OPTIONS
-r, --refresh-cache Refresh cache (ignores displaying instructions)
EXAMPLES
$ t autocomplete
$ t autocomplete bash
$ t autocomplete zsh
$ t autocomplete --refresh-cache
`
_See code: @oclif/plugin-autocomplete_
mark as done
`
USAGE
$ t done INDEX
ARGUMENTS
INDEX index of target todo
`
_See code: src/commands/done.ts_
display help for t
`
USAGE
$ t help [COMMAND]
ARGUMENTS
COMMAND command to show help for
OPTIONS
--all see all commands in CLI
`
_See code: @oclif/plugin-help_
list todos
`
USAGE
$ t list [FILTER]
ARGUMENTS
FILTER (todo|done|important) filter output by status
`
_See code: src/commands/list.ts_
remove todo
`
USAGE
$ t remove TARGET
ARGUMENTS
TARGET index of target todo or 'all'
`
_See code: src/commands/remove.ts_
mark as incomplete
`
USAGE
$ t todo [INDEX]
ARGUMENTS
INDEX index of target todo
``
_See code: src/commands/todo.ts_