VimPlugin: EasyMotion

From wikinotes

Vim motions generally require that you count the number of text-objects away your target is.
Easymotion removes this, you choose your target-type, and you'll be presented with an overlay of hotkeys to select the one you are interested in.

Documentation

github https://github.com/easymotion/vim-easymotion

Install

Plugin 'easymotion'

Usage

\\{text-object}  " jump to word

" you can combine these with vim operators
" to delete, change, etc until word
d\\w  " delete until chosen word

Text Objects

s    " search word gradually by character
n,N  " choose from search-matches (above/below)
w,b  " beginning of word (above/below)
W,B  " beginning of WORD (above/below)
j,k  " lines (above/below)
f,F  " character occurrences (forwards/backwards)