How to jump upwards in easymotion plugin for VIM?
How to jump to the lines above the cursor while u开发者_StackOverflow中文版sing the easymotion plugin in vim?
To search words backwards use <Leader><Leader>b
Try <Leader><Leader>B
to search WORDS
<leader><leader>f
will search forward while <leader><leader>F
will search backward (and such upward!). Same with t
and T
.
This is analogous to standard Vim motion f
/ F
This is all explained in :help easymotion.txt
精彩评论