+1 easy motion makes the default jump-by-search feel really clunky. Typically it is mapped to double-tap leader then object, and it will then highlight those objects with a short-code to jump right to it.
Examples:
\\w -> will highlight all words after
\\b -> all words before
\\e -> ends of words after
\\ge -> ends of words before
\\fe -> all occurences of the char 'e' after
\\Fe -> 'e' before
\\se -> 'e' in both directions
\\j -> lines after
\\k -> lines before
etc.
but can even use it with traditional search:
\\n -> will highlight all search-matches found by a previous "/" or "?" search after current pos.
\\N -> will highlight all search-matches before.
Examples:
\\w -> will highlight all words after \\b -> all words before \\e -> ends of words after \\ge -> ends of words before \\fe -> all occurences of the char 'e' after \\Fe -> 'e' before \\se -> 'e' in both directions \\j -> lines after \\k -> lines before etc.
but can even use it with traditional search:
\\n -> will highlight all search-matches found by a previous "/" or "?" search after current pos. \\N -> will highlight all search-matches before.
mega useful.