Skip to content

Instantly share code, notes, and snippets.

@long-lazuli
Created May 21, 2014 23:27
Show Gist options
  • Save long-lazuli/2166307264b0c234206b to your computer and use it in GitHub Desktop.
Save long-lazuli/2166307264b0c234206b to your computer and use it in GitHub Desktop.
test

gfmTodo for Sublime Text

gfmTodo add a shortcut to mark your task done, in a Github Flavoured Markdown way.

Installation

To install this plugin :

  • Clone source code to Sublime Text 2 app folder, eg. ~/Library/Application Support/Sublime Text 2/gfmTodo.

Usage

CTRL + SHIFT + d : toggle task completed

Samples

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:
- [X] call mum tomorrow at 8 am. _@done (2014-05-22 11:31)_
- [X] send pull request _@done (2014-05-22 11:31)_

Contribution

This is just a fork of mdTodo (https://github.com/groenewege/mdTodo).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment