Allow customizing all key mappings
This commit is contained in:
parent
dff2905d86
commit
22eaadc5e5
@ -24,6 +24,19 @@
|
|||||||
|
|
||||||
execute printf('hi default %s %s %s', a:group, guihl, ctermhl)
|
execute printf('hi default %s %s %s', a:group, guihl, ctermhl)
|
||||||
endfunction " }}}
|
endfunction " }}}
|
||||||
|
function! s:InitMappings(motions) "{{{
|
||||||
|
for motion in keys(a:motions)
|
||||||
|
call s:InitOption('mapping_' . motion, '<Leader>' . motion)
|
||||||
|
endfor
|
||||||
|
|
||||||
|
if g:EasyMotion_do_mapping
|
||||||
|
for [motion, fn] in items(a:motions)
|
||||||
|
silent exec 'nnoremap <silent> '. g:EasyMotion_mapping_{motion} .' :call EasyMotion' . fn.name . '(0, ' . fn.dir . ')<CR>'
|
||||||
|
silent exec 'onoremap <silent> '. g:EasyMotion_mapping_{motion} .' :call EasyMotion' . fn.name . '(0, ' . fn.dir . ')<CR>'
|
||||||
|
silent exec 'vnoremap <silent> '. g:EasyMotion_mapping_{motion} .' :<C-U>call EasyMotion' . fn.name . '(1, ' . fn.dir . ')<CR>'
|
||||||
|
endfor
|
||||||
|
endif
|
||||||
|
endfunction "}}}
|
||||||
|
|
||||||
call s:InitOption('keys', 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ')
|
call s:InitOption('keys', 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ')
|
||||||
call s:InitOption('target_hl', 'EasyMotionTarget')
|
call s:InitOption('target_hl', 'EasyMotionTarget')
|
||||||
@ -56,49 +69,20 @@
|
|||||||
augroup end
|
augroup end
|
||||||
" }}}
|
" }}}
|
||||||
" }}}
|
" }}}
|
||||||
" }}}
|
|
||||||
" Default key mapping {{{
|
" Default key mapping {{{
|
||||||
if g:EasyMotion_do_mapping
|
call s:InitMappings({
|
||||||
nnoremap <silent> <Leader>f :call EasyMotionF(0, 0)<CR>
|
\ 'f' : { 'name': 'F' , 'dir': 0 }
|
||||||
onoremap <silent> <Leader>f :call EasyMotionF(0, 0)<CR>
|
\ , 'F' : { 'name': 'F' , 'dir': 1 }
|
||||||
vnoremap <silent> <Leader>f :<C-U>call EasyMotionF(1, 0)<CR>
|
\ , 't' : { 'name': 'T' , 'dir': 0 }
|
||||||
|
\ , 'T' : { 'name': 'T' , 'dir': 1 }
|
||||||
nnoremap <silent> <Leader>F :call EasyMotionF(0, 1)<CR>
|
\ , 'w' : { 'name': 'WB', 'dir': 0 }
|
||||||
onoremap <silent> <Leader>F :call EasyMotionF(0, 1)<CR>
|
\ , 'b' : { 'name': 'WB', 'dir': 1 }
|
||||||
vnoremap <silent> <Leader>F :<C-U>call EasyMotionF(1, 1)<CR>
|
\ , 'e' : { 'name': 'E' , 'dir': 0 }
|
||||||
|
\ , 'ge': { 'name': 'E' , 'dir': 1 }
|
||||||
nnoremap <silent> <Leader>t :call EasyMotionT(0, 0)<CR>
|
\ , 'j' : { 'name': 'JK', 'dir': 0 }
|
||||||
onoremap <silent> <Leader>t :call EasyMotionT(0, 0)<CR>
|
\ , 'k' : { 'name': 'JK', 'dir': 1 }
|
||||||
vnoremap <silent> <Leader>t :<C-U>call EasyMotionT(1, 0)<CR>
|
\ })
|
||||||
|
" }}}
|
||||||
nnoremap <silent> <Leader>T :call EasyMotionT(0, 1)<CR>
|
|
||||||
onoremap <silent> <Leader>T :call EasyMotionT(0, 1)<CR>
|
|
||||||
vnoremap <silent> <Leader>T :<C-U>call EasyMotionT(1, 1)<CR>
|
|
||||||
|
|
||||||
nnoremap <silent> <Leader>w :call EasyMotionWB(0, 0)<CR>
|
|
||||||
onoremap <silent> <Leader>w :call EasyMotionWB(0, 0)<CR>
|
|
||||||
vnoremap <silent> <Leader>w :<C-U>call EasyMotionWB(1, 0)<CR>
|
|
||||||
|
|
||||||
nnoremap <silent> <Leader>b :call EasyMotionWB(0, 1)<CR>
|
|
||||||
onoremap <silent> <Leader>b :call EasyMotionWB(0, 1)<CR>
|
|
||||||
vnoremap <silent> <Leader>b :<C-U>call EasyMotionWB(1, 1)<CR>
|
|
||||||
|
|
||||||
nnoremap <silent> <Leader>e :call EasyMotionE(0, 0)<CR>
|
|
||||||
onoremap <silent> <Leader>e :call EasyMotionE(0, 0)<CR>
|
|
||||||
vnoremap <silent> <Leader>e :<C-U>call EasyMotionE(1, 0)<CR>
|
|
||||||
|
|
||||||
nnoremap <silent> <Leader>ge :call EasyMotionE(0, 1)<CR>
|
|
||||||
onoremap <silent> <Leader>ge :call EasyMotionE(0, 1)<CR>
|
|
||||||
vnoremap <silent> <Leader>ge :<C-U>call EasyMotionE(1, 1)<CR>
|
|
||||||
|
|
||||||
nnoremap <silent> <Leader>j :call EasyMotionJK(0, 0)<CR>
|
|
||||||
onoremap <silent> <Leader>j :call EasyMotionJK(0, 0)<CR>
|
|
||||||
vnoremap <silent> <Leader>j :<C-U>call EasyMotionJK(1, 0)<CR>
|
|
||||||
|
|
||||||
nnoremap <silent> <Leader>k :call EasyMotionJK(0, 1)<CR>
|
|
||||||
onoremap <silent> <Leader>k :call EasyMotionJK(0, 1)<CR>
|
|
||||||
vnoremap <silent> <Leader>k :<C-U>call EasyMotionJK(1, 1)<CR>
|
|
||||||
endif
|
|
||||||
" }}}
|
" }}}
|
||||||
" Initialize variables {{{
|
" Initialize variables {{{
|
||||||
function! s:CreateIndex(chars) " {{{
|
function! s:CreateIndex(chars) " {{{
|
||||||
|
Loading…
Reference in New Issue
Block a user