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