aboutsummaryrefslogtreecommitdiffstats
path: root/bundle/todo/autoload
diff options
context:
space:
mode:
authorTeddy Wing2020-03-25 20:25:54 +0100
committerTeddy Wing2020-03-25 21:45:16 +0100
commit2043ce6e5d97730413de2f864e6ebbf0efbe1b41 (patch)
tree7207c856f560145dc00195ae7244a7acf49ad033 /bundle/todo/autoload
parent607854e64e68702b55a8873825b0e902bc944e0c (diff)
downloaddotvim-2043ce6e5d97730413de2f864e6ebbf0efbe1b41.tar.bz2
todo: Rename plugin to 'todo-comments'
This plugin (specifically the `autoload/todo.vim` file) was colliding with the 'vim-twodo' plugin, which uses the same file name. Rename this plugin to prevent name conflicts.
Diffstat (limited to 'bundle/todo/autoload')
-rw-r--r--bundle/todo/autoload/todo.vim19
1 files changed, 0 insertions, 19 deletions
diff --git a/bundle/todo/autoload/todo.vim b/bundle/todo/autoload/todo.vim
deleted file mode 100644
index 6885b2b..0000000
--- a/bundle/todo/autoload/todo.vim
+++ /dev/null
@@ -1,19 +0,0 @@
-function! s:MoveToTODO(search_flags)
- let cnt = v:count1
- normal! m'
-
- let i = 0
- while i < cnt
- call search('TODO', a:search_flags)
-
- let i += 1
- endwhile
-endfunction
-
-function! todo#NextTODO()
- call s:MoveToTODO('')
-endfunction
-
-function! todo#PreviousTODO()
- call s:MoveToTODO('b')
-endfunction