Cmd2.vim
Cmd2.vim copied to clipboard
Neovim async support
Does Cmd2 support neovim async functionality?
It would be very useful for completing long lists, like help (:he ..).
Unfortunately no.
The completion comes from using Vim's own wildmenu completion so it is possible to run a headless Vim in the background and gather the completions asynchronously.
While it is possible, now with Nvim's update to allow async callbacks during getchar(), some rewrites need to be done to the cmdline rendering framework. It would be nice to support Vim 8's async as well.
Unfortunately, I do not see myself committing time to this at the moment.
Async support could also solve slowness problems.