From 374682458aeecb6b02cd88a612201feca8a0be12 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Sat, 21 Mar 2020 20:11:00 +0100 Subject: Remove `TwodoNextIncomplete` `TwodoPreviousIncomplete` xmaps I don't really use visual mode, and don't feel like trying to make these work. --- ftplugin/todo.vim | 4 ---- 1 file changed, 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 TwodoDescalate :call todo#Descalate() nnoremap TwodoNextIncomplete :call todo#motion#NextIncomplete() nnoremap TwodoPreviousIncomplete :call todo#motion#PreviousIncomplete() -xnoremap TwodoNextIncomplete :call todo#motion#NextIncomplete()v''o -xnoremap TwodoPreviousIncomplete :call todo#motion#PreviousIncomplete()v''o onoremap TwodoNextIncomplete :call todo#motion#NextIncomplete() onoremap TwodoPreviousIncomplete :call todo#motion#PreviousIncomplete() @@ -56,12 +54,10 @@ endif if !hasmapto('TwodoNextIncomplete') && !maparg(']u', 'n') nmap ]u TwodoNextIncomplete - xmap ]u TwodoNextIncomplete omap ]u TwodoNextIncomplete endif if !hasmapto('TwodoPreviousIncomplete') && !maparg('[u', 'n') nmap [u TwodoPreviousIncomplete - xmap [u TwodoPreviousIncomplete omap [u TwodoPreviousIncomplete endif -- cgit v1.2.3