Skip to content

Latest commit

 

History

History
46 lines (29 loc) · 1.19 KB

README.md

File metadata and controls

46 lines (29 loc) · 1.19 KB

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