From abfd4a5469cccd99df8df0eb64bf7805e032b13c Mon Sep 17 00:00:00 2001 From: haya14busa Date: Thu, 6 Feb 2014 23:39:11 +0900 Subject: [PATCH] Fix default key of `s` didn't work Remove obsolete mapping `S` --- plugin/EasyMotion.vim | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/plugin/EasyMotion.vim b/plugin/EasyMotion.vim index df842db..1bf03a2 100644 --- a/plugin/EasyMotion.vim +++ b/plugin/EasyMotion.vim @@ -260,12 +260,12 @@ xnoremap (easymotion-lineanywhere) "}}} "}}} -map (easymotion-clever-s) - \ EasyMotion#is_active() ? '(easymotion-next)' : '(easymotion-s)' -map (easymotion-clever-s2) - \ EasyMotion#is_active() ? '(easymotion-next)' : '(easymotion-s2)' -map (easymotion-clever-sn) - \ EasyMotion#is_active() ? '(easymotion-next)' : '(easymotion-sn)' +" map (easymotion-clever-s) +" \ EasyMotion#is_active() ? '(easymotion-next)' : '(easymotion-s)' +" map (easymotion-clever-s2) +" \ EasyMotion#is_active() ? '(easymotion-next)' : '(easymotion-s2)' +" map (easymotion-clever-sn) +" \ EasyMotion#is_active() ? '(easymotion-next)' : '(easymotion-sn)' noremap (easymotion-activate) :call EasyMotion#activate(0) xnoremap (easymotion-activate) :call EasyMotion#activate(1) @@ -289,7 +289,6 @@ if g:EasyMotion_do_mapping == 1 \ 'f' : { 'name': 'S' , 'dir': 0 } \ , 'F' : { 'name': 'S' , 'dir': 1 } \ , 's' : { 'name': 'S' , 'dir': 2 } - \ , 'S' : { 'name': 'WB' , 'dir': 2 } \ , 't' : { 'name': 'T' , 'dir': 0 } \ , 'T' : { 'name': 'T' , 'dir': 1 } \ , 'w' : { 'name': 'WB' , 'dir': 0 }