ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Markdown Todo

by groenewege ST2

Markdown todo plugin for Sublime Text

Details

  • 2017.10.30.16.10.00
  • github.​com
  • 7 years ago
  • 2 hours ago
  • 12 years ago

Installs

  • Total 4K
  • Win 2K
  • Mac 2K
  • Linux 710
Oct 31 Oct 30 Oct 29 Oct 28 Oct 27 Oct 26 Oct 25 Oct 24 Oct 23 Oct 22 Oct 21 Oct 20 Oct 19 Oct 18 Oct 17 Oct 16 Oct 15 Oct 14 Oct 13 Oct 12 Oct 11 Oct 10 Oct 9 Oct 8 Oct 7 Oct 6 Oct 5 Oct 4 Oct 3 Oct 2 Oct 1 Sep 30 Sep 29 Sep 28 Sep 27 Sep 26 Sep 25 Sep 24 Sep 23 Sep 22 Sep 21 Sep 20 Sep 19 Sep 18 Sep 17
Windows 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

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