Update README.md

Minor fix: <Leader>l should be easymotion-lineforward, and <Leader>h should be easymotion-linebackward.
This commit is contained in:
Sahand Saba 2014-04-27 14:09:24 -07:00
parent c87f91d712
commit 5bfc987194

View File

@ -175,10 +175,10 @@ EasyMotion can be configured to avoid repetitive use of the `h` `j` `k` and
```vim ```vim
" Gif config " Gif config
map <Leader>h <Plug>(easymotion-lineforward) map <Leader>l <Plug>(easymotion-lineforward)
map <Leader>j <Plug>(easymotion-j) map <Leader>j <Plug>(easymotion-j)
map <Leader>k <Plug>(easymotion-k) map <Leader>k <Plug>(easymotion-k)
map <Leader>l <Plug>(easymotion-linebackward) map <Leader>h <Plug>(easymotion-linebackward)
let g:EasyMotion_startofline = 0 " keep cursor colum when JK motion let g:EasyMotion_startofline = 0 " keep cursor colum when JK motion
``` ```