Skip to content

Instantly share code, notes, and snippets.

@zQueal
Created August 16, 2017 01:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zQueal/9867224f95cba784e212e7113b41ca6a to your computer and use it in GitHub Desktop.
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.
@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