mdTodo is a tool for managing todo list in markdown files in Sublime Text editor.
Simply install this plugin via PackageControl.
- CTRL + SHIFT + d : toggle task completed
- CTRL + SHIFT + n : create new task
Suppose we have the following todo file:
# Project A:
- call mum tomorrow at 8 am.
- send pull request
Highlight this item line and press CTRL + SHIFT + d, it marks a tag "@done" and also appends timestamp.
# Project A:
+ call mum tomorrow at 8 am. @done (2012-01-08 18:12)
+ send pull request @done (2012-01-08 18:12)
Pressing CTRL + SHIFT + n, will insert -
on a new line.
# Project A:
+ call mum tomorrow at 8 am. @done (2012-01-08 18:12)
+ send pull request @done (2012-01-08 18:12)
-
- Thanks to Taskmate for TextMate (https://github.com/svenfuchs/taskmate).
- This is a fork of https://github.com/chagel/itodo.