From 2043ce6e5d97730413de2f864e6ebbf0efbe1b41 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Wed, 25 Mar 2020 20:25:54 +0100 Subject: 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. --- bundle/todo/plugin/todo.vim | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 bundle/todo/plugin/todo.vim (limited to 'bundle/todo/plugin') 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 (todo-previous) :call todo#PreviousTODO() -nnoremap (todo-next) :call todo#NextTODO() - - -if !hasmapto('(todo-previous)', 'n') && !maparg('[t', 'n') - nmap [t (todo-previous) -endif - -if !hasmapto('(todo-next)', 'n') && !maparg(']t', 'n') - nmap ]t (todo-next) -endif -- cgit v1.2.3