blob: e6792e4042f86bbc5b3979c3534f252c1d3ea9fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
function! s:NextTODO()
normal! m'
call search('TODO')
endfunction
function! s:PreviousTODO()
normal! m'
call search('TODO', 'b')
endfunction
nnoremap [t :call <SID>PreviousTODO()<CR>
nnoremap ]t :call <SID>NextTODO()<CR>
|