aboutsummaryrefslogtreecommitdiffstats
path: root/bundle/todo/plugin/todo.vim
diff options
context:
space:
mode:
Diffstat (limited to 'bundle/todo/plugin/todo.vim')
-rw-r--r--bundle/todo/plugin/todo.vim17
1 files changed, 0 insertions, 17 deletions
diff --git a/bundle/todo/plugin/todo.vim b/bundle/todo/plugin/todo.vim
deleted file mode 100644
index f4358a6..0000000
--- a/bundle/todo/plugin/todo.vim
+++ /dev/null
@@ -1,17 +0,0 @@
-if exists('g:loaded_todo')
- finish
-endif
-let g:loaded_todo = 1
-
-
-nnoremap <silent> <Plug>(todo-previous) :<C-u>call todo#PreviousTODO()<CR>
-nnoremap <silent> <Plug>(todo-next) :<C-u>call todo#NextTODO()<CR>
-
-
-if !hasmapto('<Plug>(todo-previous)', 'n') && !maparg('[t', 'n')
- nmap [t <Plug>(todo-previous)
-endif
-
-if !hasmapto('<Plug>(todo-next)', 'n') && !maparg(']t', 'n')
- nmap ]t <Plug>(todo-next)
-endif