diff --git a/doc/easymotion.txt b/doc/easymotion.txt index ae8fabf..b95ac48 100644 --- a/doc/easymotion.txt +++ b/doc/easymotion.txt @@ -111,8 +111,6 @@ Note: The default leader has been changed to to avoid N | Jump to latest "/" or "?" backward. See |N|. s | Find(Search) {char} forward and backward. | See |f| and |F|. - S | Beginning of word forward and backward. - | See |w| and |b|. See |easymotion-leader-key| and |mapleader| for details about the leader key. See |easymotion-custom-mappings| for customizing the default mappings. @@ -138,7 +136,6 @@ EasyMotion table *easymotion-plug-table* (easymotion-n) | n (easymotion-N) | N (easymotion-s) | s - (easymotion-S) | S More Mapping Table | (No assignment by default) ----------------------------------|--------------------------------- diff --git a/plugin/EasyMotion.vim b/plugin/EasyMotion.vim index 89a962f..4e34dc6 100644 --- a/plugin/EasyMotion.vim +++ b/plugin/EasyMotion.vim @@ -198,16 +198,12 @@ call s:find_motion_map_helper({ " -- Word Motion {{{ " Word: {{{ -noremap (easymotion-w) :call EasyMotion#WB(0,0) -xnoremap (easymotion-w) :call EasyMotion#WB(1,0) -noremap (easymotion-b) :call EasyMotion#WB(0,1) -xnoremap (easymotion-b) :call EasyMotion#WB(1,1) - -" backward compatibility -noremap (easymotion-S) :call EasyMotion#WB(0,2) -xnoremap (easymotion-S) :call EasyMotion#WB(1,2) -noremap (easymotion-bd-w) :call EasyMotion#WB(0,2) -xnoremap (easymotion-bd-w) :call EasyMotion#WB(1,2) +noremap (easymotion-w) :call EasyMotion#WB(0,0) +xnoremap (easymotion-w) :call EasyMotion#WB(1,0) +noremap (easymotion-b) :call EasyMotion#WB(0,1) +xnoremap (easymotion-b) :call EasyMotion#WB(1,1) +noremap (easymotion-bd-w) :call EasyMotion#WB(0,2) +xnoremap (easymotion-bd-w) :call EasyMotion#WB(1,2) "}}} " WORD: {{{ diff --git a/t/easymotion_spec.vim b/t/easymotion_spec.vim index ccdf0b8..e7d7642 100644 --- a/t/easymotion_spec.vim +++ b/t/easymotion_spec.vim @@ -204,9 +204,6 @@ describe 'Default settings' Expect maparg('(easymotion-bd-w)', 'n') ==# ':call EasyMotion#WB(0,2)' Expect maparg('(easymotion-bd-w)', 'o') ==# ':call EasyMotion#WB(0,2)' Expect maparg('(easymotion-bd-w)', 'v') ==# ':call EasyMotion#WB(1,2)' - Expect maparg('(easymotion-S)', 'n') ==# ':call EasyMotion#WB(0,2)' - Expect maparg('(easymotion-S)', 'o') ==# ':call EasyMotion#WB(0,2)' - Expect maparg('(easymotion-S)', 'v') ==# ':call EasyMotion#WB(1,2)' " }}} " WORD Motion: {{{