An open API service indexing awesome lists of open source software.

https://github.com/robhurring/todo.vim

Basic todo mangement in vim. (Github markdown style!)
https://github.com/robhurring/todo.vim

Last synced: 5 months ago
JSON representation

Basic todo mangement in vim. (Github markdown style!)

Awesome Lists containing this project

README

          

# Todo.vim

Simple plugin to help manage my Todos.

## Usage

...need to write this out. heres how i'm using it [currently](https://github.com/robhurring/dotvim/blob/master/vimrc)

```viml
autocmd FileType markdown nmap i (todo-new)
autocmd FileType markdown nmap I (todo-new-below)
autocmd FileType markdown imap i (todo-new)
autocmd FileType markdown imap I (todo-new-below)

autocmd FileType markdown nmap x (todo-mark-as-done)
autocmd FileType markdown nmap X (todo-mark-as-undone)
autocmd FileType markdown vmap x (todo-mark-as-done)
autocmd FileType markdown vmap X (todo-mark-as-undone)
```