Shougo

Results 694 comments of Shougo

I have checked the source code and it cannot... If you have set `auto_complete_popup` is `manual`, deoplete uses cached results. But the cache is cleared when you have leave insert...

So call `deoplete#complete()` in `insert mode` is best. You need to read the documentation. I think you have not read the documentation. ``` *deoplete-options-auto_complete_popup* auto_complete_popup Change auto completion popup behavior....

Hm.. This is undocumented way but it works for me. ```vim set runtimepath+=~/src/deoplete.nvim/ let g:deoplete#enable_at_startup = 1 call deoplete#custom#option({ \ 'auto_complete': v:false, \}) nnoremap icall deoplete#mapping#_rpcrequest_wrapper([]) inoremap deoplete#manual_complete() ``` or...

> No but idk how to run a command in insert mode flushed . `call foobar()`

I think it is better. Because it is documented function. ```vim inoremap deoplete#manual_complete() ```

OK. I have reproduced it. Please update to the latest version. I have fixed it.

`inoremap call deoplete#manual_complete()` It does not work. Because you must use `deoplete#manual_complete()` in `map-`.

It works for me. Please check your deoplete.nvim is the latest version. You should check sha1. ```vim set runtimepath+=~/src/deoplete.nvim/ let g:deoplete#enable_at_startup = 1 call deoplete#custom#option({ \ 'auto_complete': v:false, \}) nnoremap...

And please test the minimal init.vim. I think you have tested non minimal init.vim.

I think the main problem is neovim block.