aboutsummaryrefslogtreecommitdiffstats
path: root/bundle/todo/autoload/todo.vim
blob: d5579c1d6076769e70ef08e025f443efcb182eec (plain)
1
2
3
4
5
6
7
8
9
function! todo#NextTODO()
	normal! m'
	call search('TODO')
endfunction

function! todo#PreviousTODO()
	normal! m'
	call search('TODO', 'b')
endfunction