Skip to content

Commit

Permalink
Fix for deoplete manual_complete()
Browse files Browse the repository at this point in the history
  • Loading branch information
Shougo committed Jul 16, 2019
1 parent 8aa928d commit ee68353
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions autoload/vimshell/mappings.vim
Expand Up @@ -665,8 +665,8 @@ function! s:execute_by_background(is_insert) abort "{{{
endfunction"}}}
function! s:start_history_complete() abort "{{{
return
\ exists('*deoplete#mappings#manual_complete') ?
\ deoplete#mappings#manual_complete('vimshell_history') :
\ exists('*deoplete#manual_complete') ?
\ deoplete#manual_complete('vimshell_history') :
\ exists('*neocomplete#start_manual_complete') ?
\ neocomplete#start_manual_complete('vimshell/history') :
\ ''
Expand Down

0 comments on commit ee68353

Please sign in to comment.