From da709cd9e90c3ab644bb92700f0ed40d965b80d3 Mon Sep 17 00:00:00 2001 From: Anton Bobov Date: Thu, 13 Oct 2011 11:17:19 +0600 Subject: Initial commit. --- files/.vim/bundle/repeat | 1 + files/.vim/bundle/surround | 1 + files/.vim/bundle/update.sh | 16 ++++++++++++++++ 3 files changed, 18 insertions(+) create mode 160000 files/.vim/bundle/repeat create mode 160000 files/.vim/bundle/surround create mode 100755 files/.vim/bundle/update.sh (limited to 'files/.vim/bundle') diff --git a/files/.vim/bundle/repeat b/files/.vim/bundle/repeat new file mode 160000 index 0000000..c4101c2 --- /dev/null +++ b/files/.vim/bundle/repeat @@ -0,0 +1 @@ +Subproject commit c4101c205ef9e06bdfeff571a7dbba2576f08974 diff --git a/files/.vim/bundle/surround b/files/.vim/bundle/surround new file mode 160000 index 0000000..27710a2 --- /dev/null +++ b/files/.vim/bundle/surround @@ -0,0 +1 @@ +Subproject commit 27710a2224d6dd0486d1c40d09ef18dd752e7d37 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" -- cgit v1.2.3