diff options
Diffstat (limited to 'plugin/git_todo.vim')
-rw-r--r-- | plugin/git_todo.vim | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/plugin/git_todo.vim b/plugin/git_todo.vim new file mode 100644 index 0000000..6f5d283 --- /dev/null +++ b/plugin/git_todo.vim @@ -0,0 +1,7 @@ +if exists('g:loaded_git_todo') + finish +endif +let g:loaded_git_todo = 1 + + +command! -nargs=? GitTodo call git_todo#QuickfixTodos(<q-args>) |