Reputation: 1215
I would like to run a costly vim command for all my buffers in vim, as far as I can tell, these commands are run synchronously. Is there a way to have them execute in parallel?
Upvotes: 2
Views: 279
Reputation: 549
If you are using vim 7 or a lower version, parallel processing is not supported.
This has been implemented in vim8 (see What’s new in Vim 8).
I suggest you to look a :help job
Upvotes: 1