1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 02:20:05 +08:00

Add SPC j i for jump in buffer

This commit is contained in:
wsdjeg 2017-06-02 00:13:15 +08:00
parent 64e424f6bc
commit f17af99048

View File

@ -1,6 +1,12 @@
function! SpaceVim#layers#denite#plugins() abort
return [
\ ['Shougo/denite.nvim',{ 'merged' : 0, 'loadconf' : 1}],
\ ['pocari/vim-denite-emoji', {'merged' : 0}],
\ ]
return [
\ ['Shougo/denite.nvim',{ 'merged' : 0, 'loadconf' : 1}],
\ ['pocari/vim-denite-emoji', {'merged' : 0}],
\ ]
endfunction
function! SpaceVim#layers#denite#config() abort
call SpaceVim#mapping#space#def('nnoremap', ['j', 'i'], 'Denite outline', 'jump to a definition in buffer', 1)
endfunction
" vim:set et sw=2 cc=80: