-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
78 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
doc/tags | ||
build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
*simple-todo.txt* Manage todo lists. Really simple. | ||
|
||
Author: Vital Kudzelka | <[email protected]> | ||
License: MIT | http://mit-license.org/vitalk | ||
|
||
|
||
Reference manual~ | ||
|
||
============================================================================== | ||
Manage todo lists. Really simple. *simple-todo* | ||
|
||
1. Intro.................................|simple-todo-into| | ||
2. Mappings..............................|simple-todo-maps| | ||
3. Contributing..........................|simple-todo-contrib| | ||
|
||
============================================================================== | ||
1. Intro *simple-todo-into* | ||
|
||
Plugin provides handy mappings to manage simple todo lists. | ||
|
||
Supported format of todo list is similar to task lists used in GitHub Flavored | ||
Markdown. Read GitHub blog article for example: | ||
|
||
https://github.com/blog/1375-task-lists-in-gfm-issues-pulls-comments | ||
|
||
|
||
============================================================================== | ||
2. Mappings *simple-todo-maps* | ||
|
||
Plugin exposes some <Plug> maps. These maps are available for normal and | ||
insert modes. | ||
|
||
To completely disable default key bindings (which is pretty handy) use: | ||
> | ||
let g:simple_todo_map_keys = 0 | ||
< | ||
*<Plug>(simple-todo-new)* | ||
<Plug>(simple-todo-new) | ||
<leader>i Create a new item | ||
|
||
*<Plug>(simple-todo-below)* | ||
<Plug>(simple-todo-below) | ||
<leader>o Create a new item below | ||
|
||
*<Plug>(simple-todo-above)* | ||
<Plug>(simple-todo-above) | ||
<leader>O Create a new item above | ||
|
||
*<Plug>(simple-todo-mark-as-done)* | ||
<Plug>(simple-todo-mark-as-done) | ||
<leader>x Mark item under cursor as done. | ||
|
||
*<Plug>(simple-todo-mark-as-undone)* | ||
<Plug>(simple-todo-mark-as-undone) | ||
<leader>X Mark item under cursor as undone | ||
|
||
============================================================================== | ||
3. Contributing *simple-todo-contrib* | ||
|
||
Don't hesitate to create a new GitHub Issue for any bug or suggestion: | ||
|
||
https://github.com/vitalk/vim-simple-todo/issues | ||
|
||
vim:tw=78:et:ft=help:norl: |