Merge branch 'update/doc' into master

close #137
This commit is contained in:
haya14busa 2014-04-06 13:43:18 +09:00
commit c751a90716
2 changed files with 7 additions and 1 deletions

View File

@ -152,6 +152,10 @@ What sounds complicated should become clear if you look at the following example
" Gif config " Gif config
map / <Plug>(easymotion-sn) map / <Plug>(easymotion-sn)
omap / <Plug>(easymotion-tn) omap / <Plug>(easymotion-tn)
" These `n` & `N` mappings are options. You do not have to map `n` & `N` to EasyMotion.
" Without these mappings, `n` & `N` works fine. (These mappings just provide
" different highlight method and have some other features )
map n <Plug>(easymotion-next) map n <Plug>(easymotion-next)
map N <Plug>(easymotion-prev) map N <Plug>(easymotion-prev)
``` ```

View File

@ -508,7 +508,9 @@ keymapping,
<Leader>s{char}{char}{char}...<CR> <Leader>s{char}{char}{char}...<CR>
You can use <C-h> to delete while typing. You can use <C-h> to delete while typing, and Vim's default |n| & |N|
keymappings works after this motion(|<Plug>(easymotion-sn)|) to move next or
previous matches.
Note: the 'n' key motion provides incremental highlighting. If you don't Note: the 'n' key motion provides incremental highlighting. If you don't
want to highlight incrementally, set |g:EasyMotion_inc_highlight| want to highlight incrementally, set |g:EasyMotion_inc_highlight|