diff options
author | Teddy Wing | 2020-03-10 00:43:15 +0100 |
---|---|---|
committer | Teddy Wing | 2020-03-12 23:21:55 +0100 |
commit | 502132da7d6131e3ace63f43e50c0e4e5004da91 (patch) | |
tree | 9b92a8538b02ae5bb314277aa11c68a44a9bf34c /bundle/todo/autoload | |
parent | 5664f60792d9574b8f4e07ee178c6af75b57cf06 (diff) | |
download | dotvim-502132da7d6131e3ace63f43e50c0e4e5004da91.tar.bz2 |
todo: Move functions to autoload
Diffstat (limited to 'bundle/todo/autoload')
-rw-r--r-- | bundle/todo/autoload/todo.vim | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/bundle/todo/autoload/todo.vim b/bundle/todo/autoload/todo.vim new file mode 100644 index 0000000..d5579c1 --- /dev/null +++ b/bundle/todo/autoload/todo.vim @@ -0,0 +1,9 @@ +function! todo#NextTODO() + normal! m' + call search('TODO') +endfunction + +function! todo#PreviousTODO() + normal! m' + call search('TODO', 'b') +endfunction |