1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-23 13:10:04 +08:00

fix(denite): fix denite key binding

close https://github.com/SpaceVim/SpaceVim/issues/4507
This commit is contained in:
wsdjeg 2022-04-11 19:43:09 +08:00
parent d90a3e1d3f
commit 3ebcbf97be

View File

@ -188,6 +188,10 @@ function! s:denite_filter_my_settings() abort
\ <Esc><C-w>p:call cursor(line('.')+1,0)<CR><C-w>pA
inoremap <silent><buffer> <S-Tab>
\ <Esc><C-w>p:call cursor(line('.')-1,0)<CR><C-w>pA
inoremap <silent><buffer> <C-j>
\ <Esc><C-w>p:call cursor(line('.')+1,0)<CR><C-w>pA
inoremap <silent><buffer> <C-k>
\ <Esc><C-w>p:call cursor(line('.')-1,0)<CR><C-w>pA
inoremap <silent><buffer><expr> <CR> denite#do_map('do_action')
" @fixme use this key binding only for sources which has delete action
inoremap <silent><buffer><expr> <C-d>