diff options
Diffstat (limited to 'ftplugin/todo.vim')
-rw-r--r-- | ftplugin/todo.vim | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/ftplugin/todo.vim b/ftplugin/todo.vim index c876313..22880ac 100644 --- a/ftplugin/todo.vim +++ b/ftplugin/todo.vim @@ -17,8 +17,6 @@ nnoremap <silent> <buffer> <Plug>TwodoDescalate :<c-u>call todo#Descalate()<cr> nnoremap <silent> <buffer> <Plug>TwodoNextIncomplete :<c-u>call todo#motion#NextIncomplete()<cr> nnoremap <silent> <buffer> <Plug>TwodoPreviousIncomplete :<c-u>call todo#motion#PreviousIncomplete()<cr> -xnoremap <silent> <buffer> <Plug>TwodoNextIncomplete :<c-u>call todo#motion#NextIncomplete()<cr>v''o -xnoremap <silent> <buffer> <Plug>TwodoPreviousIncomplete :<c-u>call todo#motion#PreviousIncomplete()<cr>v''o onoremap <silent> <buffer> <Plug>TwodoNextIncomplete :<c-u>call todo#motion#NextIncomplete()<cr> onoremap <silent> <buffer> <Plug>TwodoPreviousIncomplete :<c-u>call todo#motion#PreviousIncomplete()<cr> @@ -56,12 +54,10 @@ endif if !hasmapto('<Plug>TwodoNextIncomplete') && !maparg(']u', 'n') nmap <buffer> ]u <Plug>TwodoNextIncomplete - xmap <buffer> ]u <Plug>TwodoNextIncomplete omap <buffer> ]u <Plug>TwodoNextIncomplete endif if !hasmapto('<Plug>TwodoPreviousIncomplete') && !maparg('[u', 'n') nmap <buffer> [u <Plug>TwodoPreviousIncomplete - xmap <buffer> [u <Plug>TwodoPreviousIncomplete omap <buffer> [u <Plug>TwodoPreviousIncomplete endif |