WhiteBlackGoose

Results 229 comments of WhiteBlackGoose

It would be nice to have it more obvious that that feature does. Also, please, add a way to push a release to another repo. For now I will stay...

I'm not the one to help here, but I would make it consistent with CompareTo (like I'm doing it right now, because I'm writing a wrapper for your lib to...

oof not to merge now, I discovered a few bugs

Now it's ready

Hmmm, why can it be happening though? Also mb constrain the exception to `InvalidOperation` one? 😅

Thanks, I was trying to figure out how to use it too. It doesn't seem to get triggered in normal mode (I binded to `:lua vim.g.trigger_deoplete()i`, where `vim.g.trigger_deoplete` uses `deoplete#manual_complete()`)....

> It is really want to execute in normal mode?? No but idk how to run a command in insert mode :flushed: . > You need to read the documentation....

Thank you so much, with slight modifications it works for me: ```lua vim.cmd[[ let g:deoplete#enable_at_startup = 1 call deoplete#custom#option({ \ 'auto_complete': v:false, \}) inoremap call deoplete#mapping#_rpcrequest_wrapper([]) ]] ```

I may be doing something wrong, but yours doesn't work for me. It freezes for half a second with `80>ü^D` in the right bottom corner and then gets into normal...

Still the same behavior... here's my repro: ``` watermelonwater ``` Doesn't show the popup for me. I updated with `:PlugUpdate deoplete.nvim`. nvim 0.7. Both ``` inoremap deoplete#manual_complete() inoremap call deoplete#manual_complete()...