Sometimes it can take a little time to execute this extension. For instance if I automatically triggers the coverage highlighting at buffer opening with autocmd! BufWritePost,BufEnter *.py HighlightCoverageForAll it can take more than 1s for the buffer to display.
I understood that since vim 8 or neovim, commands can be ran asynchronously. Could it be possible to run this extension asynchronously?
Sometimes it can take a little time to execute this extension. For instance if I automatically triggers the coverage highlighting at buffer opening with
autocmd! BufWritePost,BufEnter *.py HighlightCoverageForAllit can take more than 1s for the buffer to display.I understood that since vim 8 or neovim, commands can be ran asynchronously. Could it be possible to run this extension asynchronously?