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