Mike Lee
Mike Lee

Reputation: 1215

How to run vim bufdo in parallel

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

Answers (1)

LLenain
LLenain

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

Related Questions