jreybert / vimagit

Ease your git workflow within Vim
1.31k stars 49 forks source link

Fix very slow update when large submodule #195

Closed jreybert closed 3 years ago

jreybert commented 3 years ago

Until now, vimagit relied on git submodule status to get the list of submodule. As we just want a list of the submodule, and not their status, this is oversized.

Having linux as a submodule, git submodule status can take more than 10 seconds.

This new method is very fast.