aboutsummaryrefslogtreecommitdiffstats
path: root/bundle/todo/plugin/todo.vim
diff options
context:
space:
mode:
authorTeddy Wing2020-03-10 01:12:58 +0100
committerTeddy Wing2020-03-12 23:21:56 +0100
commita29a63f7ff3db981ae7fc38eace081ea4f2ad880 (patch)
tree0cc764f649bd6ddbaa7ee4d22c0769126a556cec /bundle/todo/plugin/todo.vim
parentdf27c8e022078abf17b1eee3babec1d4be0c4b4a (diff)
downloaddotvim-a29a63f7ff3db981ae7fc38eace081ea4f2ad880.tar.bz2
todo: Add count support to TODO movement commands
Diffstat (limited to 'bundle/todo/plugin/todo.vim')
-rw-r--r--bundle/todo/plugin/todo.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundle/todo/plugin/todo.vim b/bundle/todo/plugin/todo.vim
index a27171f..f4358a6 100644
--- a/bundle/todo/plugin/todo.vim
+++ b/bundle/todo/plugin/todo.vim
@@ -4,8 +4,8 @@ endif
let g:loaded_todo = 1
-nnoremap <silent> <Plug>(todo-previous) :call todo#PreviousTODO()<CR>
-nnoremap <silent> <Plug>(todo-next) :call todo#NextTODO()<CR>
+nnoremap <silent> <Plug>(todo-previous) :<C-u>call todo#PreviousTODO()<CR>
+nnoremap <silent> <Plug>(todo-next) :<C-u>call todo#NextTODO()<CR>
if !hasmapto('<Plug>(todo-previous)', 'n') && !maparg('[t', 'n')