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!)
- Host: GitHub
- URL: https://github.com/robhurring/todo.vim
- Owner: robhurring
- Created: 2015-11-04T18:08:11.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2021-04-28T01:36:13.000Z (about 5 years ago)
- Last Synced: 2025-09-13T04:40:41.997Z (10 months ago)
- Language: VimL
- Size: 121 KB
- Stars: 1
- Watchers: 0
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)
```