File tree Expand file tree Collapse file tree 1 file changed +12
-8
lines changed Expand file tree Collapse file tree 1 file changed +12
-8
lines changed Original file line number Diff line number Diff line change @@ -31,9 +31,15 @@ https://github.com/blog/1375-task-lists-in-gfm-issues-pulls-comments
31
31
Plugin exposes some <Plug> maps. These maps are available for normal, visual
32
32
and insert modes.
33
33
34
- To completely disable default key bindings (which is pretty handy) use:
34
+ All default key bindings (which is pretty handy) can be completely disabled
35
35
>
36
- let g:simple_todo_map_keys = 0
36
+ let g:simple_todo_map_keys = 0
37
+ <
38
+ or disabled separately for each mode
39
+ >
40
+ let g:simple_todo_map_normal_mode_keys = 0
41
+ let g:simple_todo_map_insert_mode_keys = 0
42
+ let g:simple_todo_map_visual_mode_keys = 0
37
43
<
38
44
*<Plug>(simple-todo-new)*
39
45
<Plug> (simple-todo-new)
@@ -67,15 +73,13 @@ let g:simple_todo_map_keys = 0
67
73
3. Customization *simple-todo-customization*
68
74
69
75
The default tick symbol `x ` can be changed by defining:
70
-
71
76
>
72
- let g:simple_todo_tick_symbol = 'y'
73
-
77
+ let g:simple_todo_tick_symbol = 'y'
78
+ <
74
79
You may also change the list symbol `- ` by defining:
75
-
76
- let g:simple_todo_list_symbol = '*'
80
+ >
81
+ let g:simple_todo_list_symbol = '*'
77
82
<
78
-
79
83
==============================================================================
80
84
4. Contributing *simple-todo-contrib*
81
85
You can’t perform that action at this time.
0 commit comments