Created
August 16, 2017 01:02
-
-
Save zQueal/9867224f95cba784e212e7113b41ca6a to your computer and use it in GitHub Desktop.
A simple updater for the Vim8 plugin system that isn't crazy painful.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ECHO OFF | |
REM Download FindUtils: http://gnuwin32.sourceforge.net/packages/findutils.htm | |
REM Add xargs.exe to your %PATH% | |
REM Add %PLUGINS% (environment variable) == your vim "packpath" | |
REM E.g %PLUGINS% = C:\Users\zqueal\.vim\pack\plugins\start | |
REM Add this batchfile to your %PATH% | |
REM run vim_update_plugins from CMD (or whatever you named the batchfile | |
cd %PLUGINS% | |
ls | xargs -I{} git -C {} pull | |
pause |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment