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

Disable deoplete in denite filter buffer

This commit is contained in:
Shidong Wang 2020-01-29 23:16:54 +08:00
parent 5a65f8ec1e
commit b537de9425

View File

@ -192,6 +192,9 @@ function! s:denite_filter_my_settings() abort
" @fixme use this key binding only for sources which has delete action
inoremap <silent><buffer><expr> <C-d>
\ <SID>delete_action()
if exists('*deoplete#custom#buffer_option')
call deoplete#custom#buffer_option('auto_complete', v:false)
endif
endfunction