aboutsummaryrefslogtreecommitdiff
path: root/files/.vim/bundle
diff options
context:
space:
mode:
Diffstat (limited to 'files/.vim/bundle')
m---------files/.vim/bundle/repeat0
m---------files/.vim/bundle/surround0
-rwxr-xr-xfiles/.vim/bundle/update.sh16
3 files changed, 16 insertions, 0 deletions
diff --git a/files/.vim/bundle/repeat b/files/.vim/bundle/repeat
new file mode 160000
+Subproject c4101c205ef9e06bdfeff571a7dbba2576f0897
diff --git a/files/.vim/bundle/surround b/files/.vim/bundle/surround
new file mode 160000
+Subproject 27710a2224d6dd0486d1c40d09ef18dd752e7d3
diff --git a/files/.vim/bundle/update.sh b/files/.vim/bundle/update.sh
new file mode 100755
index 0000000..c8cb034
--- /dev/null
+++ b/files/.vim/bundle/update.sh
@@ -0,0 +1,16 @@
+#!/bin/bash
+
+oldcwd=$(pwd)
+
+cd "$(dirname "$0")"
+for submodule in *
+do
+ if [ -d "$submodule/.git" ]
+ then
+ cd "$submodule"
+ echo "--- $submodule:"
+ git pull
+ cd ..
+ fi
+done
+cd "$oldcwd"