diff options
author | Teddy Wing | 2020-03-21 20:11:00 +0100 |
---|---|---|
committer | Teddy Wing | 2020-03-21 20:11:00 +0100 |
commit | 374682458aeecb6b02cd88a612201feca8a0be12 (patch) | |
tree | e4530d9639cf12941dfb5270a957f89055eab010 | |
parent | cb76590a7d75f9e49273b1f5ad7fbffaf3a0fd17 (diff) | |
download | vim-twodo-374682458aeecb6b02cd88a612201feca8a0be12.tar.bz2 |
Remove `<Plug>TwodoNextIncomplete` `<Plug>TwodoPreviousIncomplete` xmaps
I don't really use visual mode, and don't feel like trying to make these
work.
-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 |