TODO lists in markdown for Sublime Text ------------------ mdTodo is a tool for managing todo list in markdown files in Sublime Text editor. Installation ------------------ Simply install this plugin via **PackageControl**. Usage ------------------ 1. CTRL + SHIFT + d : toggle task completed 2. CTRL + SHIFT + n : create new task Examples ------------------ 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) - Contribution ------------------ - Thanks to Taskmate for TextMate (https://github.com/svenfuchs/taskmate). - This is a fork of https://github.com/chagel/itodo.