=== removed directory 'vim/bundle/FastFold' === removed directory 'vim/bundle/FastFold/.git' === removed file 'vim/bundle/FastFold/.git/HEAD' --- vim/bundle/FastFold/.git/HEAD 2016-08-11 22:03:18 +0000 +++ vim/bundle/FastFold/.git/HEAD 1970-01-01 00:00:00 +0000 @@ -1,1 +0,0 @@ -ref: refs/heads/master === removed file 'vim/bundle/FastFold/.git/config' --- vim/bundle/FastFold/.git/config 2016-08-11 22:03:18 +0000 +++ vim/bundle/FastFold/.git/config 1970-01-01 00:00:00 +0000 @@ -1,11 +0,0 @@ -[core] - repositoryformatversion = 0 - filemode = true - bare = false - logallrefupdates = true -[remote "origin"] - url = https://github.com/Konfekt/FastFold - fetch = +refs/heads/master:refs/remotes/origin/master -[branch "master"] - remote = origin - merge = refs/heads/master === removed file 'vim/bundle/FastFold/.git/description' --- vim/bundle/FastFold/.git/description 2016-08-11 22:03:18 +0000 +++ vim/bundle/FastFold/.git/description 1970-01-01 00:00:00 +0000 @@ -1,1 +0,0 @@ -Unnamed repository; edit this file 'description' to name the repository. === removed directory 'vim/bundle/FastFold/.git/hooks' === removed file 'vim/bundle/FastFold/.git/hooks/applypatch-msg.sample' --- vim/bundle/FastFold/.git/hooks/applypatch-msg.sample 2016-08-11 22:03:18 +0000 +++ vim/bundle/FastFold/.git/hooks/applypatch-msg.sample 1970-01-01 00:00:00 +0000 @@ -1,15 +0,0 @@ -#!/bin/sh -# -# An example hook script to check the commit log message taken by -# applypatch from an e-mail message. -# -# The hook should exit with non-zero status after issuing an -# appropriate message if it wants to stop the commit. The hook is -# allowed to edit the commit message file. -# -# To enable this hook, rename this file to "applypatch-msg". - -. git-sh-setup -commitmsg="$(git rev-parse --git-path hooks/commit-msg)" -test -x "$commitmsg" && exec "$commitmsg" ${1+"$@"} -: === removed file 'vim/bundle/FastFold/.git/hooks/commit-msg.sample' --- vim/bundle/FastFold/.git/hooks/commit-msg.sample 2016-08-11 22:03:18 +0000 +++ vim/bundle/FastFold/.git/hooks/commit-msg.sample 1970-01-01 00:00:00 +0000 @@ -1,24 +0,0 @@ -#!/bin/sh -# -# An example hook script to check the commit log message. -# Called by "git commit" with one argument, the name of the file -# that has the commit message. The hook should exit with non-zero -# status after issuing an appropriate message if it wants to stop the -# commit. The hook is allowed to edit the commit message file. -# -# To enable this hook, rename this file to "commit-msg". - -# Uncomment the below to add a Signed-off-by line to the message. -# Doing this in a hook is a bad idea in general, but the prepare-commit-msg -# hook is more suited to it. -# -# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') -# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" - -# This example catches duplicate Signed-off-by lines. - -test "" = "$(grep '^Signed-off-by: ' "$1" | - sort | uniq -c | sed -e '/^[ ]*1[ ]/d')" || { - echo >&2 Duplicate Signed-off-by lines. - exit 1 -} === removed file 'vim/bundle/FastFold/.git/hooks/post-update.sample' --- vim/bundle/FastFold/.git/hooks/post-update.sample 2016-08-11 22:03:18 +0000 +++ vim/bundle/FastFold/.git/hooks/post-update.sample 1970-01-01 00:00:00 +0000 @@ -1,8 +0,0 @@ -#!/bin/sh -# -# An example hook script to prepare a packed repository for use over -# dumb transports. -# -# To enable this hook, rename this file to "post-update". - -exec git update-server-info === removed file 'vim/bundle/FastFold/.git/hooks/pre-applypatch.sample' --- vim/bundle/FastFold/.git/hooks/pre-applypatch.sample 2016-08-11 22:03:18 +0000 +++ vim/bundle/FastFold/.git/hooks/pre-applypatch.sample 1970-01-01 00:00:00 +0000 @@ -1,14 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed -# by applypatch from an e-mail message. -# -# The hook should exit with non-zero status after issuing an -# appropriate message if it wants to stop the commit. -# -# To enable this hook, rename this file to "pre-applypatch". - -. git-sh-setup -precommit="$(git rev-parse --git-path hooks/pre-commit)" -test -x "$precommit" && exec "$precommit" ${1+"$@"} -: === removed file 'vim/bundle/FastFold/.git/hooks/pre-commit.sample' --- vim/bundle/FastFold/.git/hooks/pre-commit.sample 2016-08-11 22:03:18 +0000 +++ vim/bundle/FastFold/.git/hooks/pre-commit.sample 1970-01-01 00:00:00 +0000 @@ -1,49 +0,0 @@ -#!/bin/sh -# -# An example hook script to verify what is about to be committed. -# Called by "git commit" with no arguments. The hook should -# exit with non-zero status after issuing an appropriate message if -# it wants to stop the commit. -# -# To enable this hook, rename this file to "pre-commit". - -if git rev-parse --verify HEAD >/dev/null 2>&1 -then - against=HEAD -else - # Initial commit: diff against an empty tree object - against=4b825dc642cb6eb9a060e54bf8d69288fbee4904 -fi - -# If you want to allow non-ASCII filenames set this variable to true. -allownonascii=$(git config --bool hooks.allownonascii) - -# Redirect output to stderr. -exec 1>&2 - -# Cross platform projects tend to avoid non-ASCII filenames; prevent -# them from being added to the repository. We exploit the fact that the -# printable range starts at the space character and ends with tilde. -if [ "$allownonascii" != "true" ] && - # Note that the use of brackets around a tr range is ok here, (it's - # even required, for portability to Solaris 10's /usr/bin/tr), since - # the square bracket bytes happen to fall in the designated range. - test $(git diff --cached --name-only --diff-filter=A -z $against | - LC_ALL=C tr -d '[ -~]\0' | wc -c) != 0 -then - cat <<\EOF -Error: Attempt to add a non-ASCII file name. - -This can cause problems if you want to work with people on other platforms. - -To be portable it is advisable to rename the file. - -If you know what you are doing you can disable this check using: - - git config hooks.allownonascii true -EOF - exit 1 -fi - -# If there are whitespace errors, print the offending file names and fail. -exec git diff-index --check --cached $against -- === removed file 'vim/bundle/FastFold/.git/hooks/pre-push.sample' --- vim/bundle/FastFold/.git/hooks/pre-push.sample 2016-08-11 22:03:18 +0000 +++ vim/bundle/FastFold/.git/hooks/pre-push.sample 1970-01-01 00:00:00 +0000 @@ -1,53 +0,0 @@ -#!/bin/sh - -# An example hook script to verify what is about to be pushed. Called by "git -# push" after it has checked the remote status, but before anything has been -# pushed. If this script exits with a non-zero status nothing will be pushed. -# -# This hook is called with the following parameters: -# -# $1 -- Name of the remote to which the push is being done -# $2 -- URL to which the push is being done -# -# If pushing without using a named remote those arguments will be equal. -# -# Information about the commits which are being pushed is supplied as lines to -# the standard input in the form: -# -# -# -# This sample shows how to prevent push of commits where the log message starts -# with "WIP" (work in progress). - -remote="$1" -url="$2" - -z40=0000000000000000000000000000000000000000 - -while read local_ref local_sha remote_ref remote_sha -do - if [ "$local_sha" = $z40 ] - then - # Handle delete - : - else - if [ "$remote_sha" = $z40 ] - then - # New branch, examine all commits - range="$local_sha" - else - # Update to existing branch, examine new commits - range="$remote_sha..$local_sha" - fi - - # Check for WIP commit - commit=`git rev-list -n 1 --grep '^WIP' "$range"` - if [ -n "$commit" ] - then - echo >&2 "Found WIP commit in $local_ref, not pushing" - exit 1 - fi - fi -done - -exit 0 === removed file 'vim/bundle/FastFold/.git/hooks/pre-rebase.sample' --- vim/bundle/FastFold/.git/hooks/pre-rebase.sample 2016-08-11 22:03:18 +0000 +++ vim/bundle/FastFold/.git/hooks/pre-rebase.sample 1970-01-01 00:00:00 +0000 @@ -1,169 +0,0 @@ -#!/bin/sh -# -# Copyright (c) 2006, 2008 Junio C Hamano -# -# The "pre-rebase" hook is run just before "git rebase" starts doing -# its job, and can prevent the command from running by exiting with -# non-zero status. -# -# The hook is called with the following parameters: -# -# $1 -- the upstream the series was forked from. -# $2 -- the branch being rebased (or empty when rebasing the current branch). -# -# This sample shows how to prevent topic branches that are already -# merged to 'next' branch from getting rebased, because allowing it -# would result in rebasing already published history. - -publish=next -basebranch="$1" -if test "$#" = 2 -then - topic="refs/heads/$2" -else - topic=`git symbolic-ref HEAD` || - exit 0 ;# we do not interrupt rebasing detached HEAD -fi - -case "$topic" in -refs/heads/??/*) - ;; -*) - exit 0 ;# we do not interrupt others. - ;; -esac - -# Now we are dealing with a topic branch being rebased -# on top of master. Is it OK to rebase it? - -# Does the topic really exist? -git show-ref -q "$topic" || { - echo >&2 "No such branch $topic" - exit 1 -} - -# Is topic fully merged to master? -not_in_master=`git rev-list --pretty=oneline ^master "$topic"` -if test -z "$not_in_master" -then - echo >&2 "$topic is fully merged to master; better remove it." - exit 1 ;# we could allow it, but there is no point. -fi - -# Is topic ever merged to next? If so you should not be rebasing it. -only_next_1=`git rev-list ^master "^$topic" ${publish} | sort` -only_next_2=`git rev-list ^master ${publish} | sort` -if test "$only_next_1" = "$only_next_2" -then - not_in_topic=`git rev-list "^$topic" master` - if test -z "$not_in_topic" - then - echo >&2 "$topic is already up-to-date with master" - exit 1 ;# we could allow it, but there is no point. - else - exit 0 - fi -else - not_in_next=`git rev-list --pretty=oneline ^${publish} "$topic"` - /usr/bin/perl -e ' - my $topic = $ARGV[0]; - my $msg = "* $topic has commits already merged to public branch:\n"; - my (%not_in_next) = map { - /^([0-9a-f]+) /; - ($1 => 1); - } split(/\n/, $ARGV[1]); - for my $elem (map { - /^([0-9a-f]+) (.*)$/; - [$1 => $2]; - } split(/\n/, $ARGV[2])) { - if (!exists $not_in_next{$elem->[0]}) { - if ($msg) { - print STDERR $msg; - undef $msg; - } - print STDERR " $elem->[1]\n"; - } - } - ' "$topic" "$not_in_next" "$not_in_master" - exit 1 -fi - -exit 0 - -################################################################ - -This sample hook safeguards topic branches that have been -published from being rewound. - -The workflow assumed here is: - - * Once a topic branch forks from "master", "master" is never - merged into it again (either directly or indirectly). - - * Once a topic branch is fully cooked and merged into "master", - it is deleted. If you need to build on top of it to correct - earlier mistakes, a new topic branch is created by forking at - the tip of the "master". This is not strictly necessary, but - it makes it easier to keep your history simple. - - * Whenever you need to test or publish your changes to topic - branches, merge them into "next" branch. - -The script, being an example, hardcodes the publish branch name -to be "next", but it is trivial to make it configurable via -$GIT_DIR/config mechanism. - -With this workflow, you would want to know: - -(1) ... if a topic branch has ever been merged to "next". Young - topic branches can have stupid mistakes you would rather - clean up before publishing, and things that have not been - merged into other branches can be easily rebased without - affecting other people. But once it is published, you would - not want to rewind it. - -(2) ... if a topic branch has been fully merged to "master". - Then you can delete it. More importantly, you should not - build on top of it -- other people may already want to - change things related to the topic as patches against your - "master", so if you need further changes, it is better to - fork the topic (perhaps with the same name) afresh from the - tip of "master". - -Let's look at this example: - - o---o---o---o---o---o---o---o---o---o "next" - / / / / - / a---a---b A / / - / / / / - / / c---c---c---c B / - / / / \ / - / / / b---b C \ / - / / / / \ / - ---o---o---o---o---o---o---o---o---o---o---o "master" - - -A, B and C are topic branches. - - * A has one fix since it was merged up to "next". - - * B has finished. It has been fully merged up to "master" and "next", - and is ready to be deleted. - - * C has not merged to "next" at all. - -We would want to allow C to be rebased, refuse A, and encourage -B to be deleted. - -To compute (1): - - git rev-list ^master ^topic next - git rev-list ^master next - - if these match, topic has not merged in next at all. - -To compute (2): - - git rev-list master..topic - - if this is empty, it is fully merged to "master". === removed file 'vim/bundle/FastFold/.git/hooks/prepare-commit-msg.sample' --- vim/bundle/FastFold/.git/hooks/prepare-commit-msg.sample 2016-08-11 22:03:18 +0000 +++ vim/bundle/FastFold/.git/hooks/prepare-commit-msg.sample 1970-01-01 00:00:00 +0000 @@ -1,36 +0,0 @@ -#!/bin/sh -# -# An example hook script to prepare the commit log message. -# Called by "git commit" with the name of the file that has the -# commit message, followed by the description of the commit -# message's source. The hook's purpose is to edit the commit -# message file. If the hook fails with a non-zero status, -# the commit is aborted. -# -# To enable this hook, rename this file to "prepare-commit-msg". - -# This hook includes three examples. The first comments out the -# "Conflicts:" part of a merge commit. -# -# The second includes the output of "git diff --name-status -r" -# into the message, just before the "git status" output. It is -# commented because it doesn't cope with --amend or with squashed -# commits. -# -# The third example adds a Signed-off-by line to the message, that can -# still be edited. This is rarely a good idea. - -case "$2,$3" in - merge,) - /usr/bin/perl -i.bak -ne 's/^/# /, s/^# #/#/ if /^Conflicts/ .. /#/; print' "$1" ;; - -# ,|template,) -# /usr/bin/perl -i.bak -pe ' -# print "\n" . `git diff --cached --name-status -r` -# if /^#/ && $first++ == 0' "$1" ;; - - *) ;; -esac - -# SOB=$(git var GIT_AUTHOR_IDENT | sed -n 's/^\(.*>\).*$/Signed-off-by: \1/p') -# grep -qs "^$SOB" "$1" || echo "$SOB" >> "$1" === removed file 'vim/bundle/FastFold/.git/hooks/update.sample' --- vim/bundle/FastFold/.git/hooks/update.sample 2016-08-11 22:03:18 +0000 +++ vim/bundle/FastFold/.git/hooks/update.sample 1970-01-01 00:00:00 +0000 @@ -1,128 +0,0 @@ -#!/bin/sh -# -# An example hook script to block unannotated tags from entering. -# Called by "git receive-pack" with arguments: refname sha1-old sha1-new -# -# To enable this hook, rename this file to "update". -# -# Config -# ------ -# hooks.allowunannotated -# This boolean sets whether unannotated tags will be allowed into the -# repository. By default they won't be. -# hooks.allowdeletetag -# This boolean sets whether deleting tags will be allowed in the -# repository. By default they won't be. -# hooks.allowmodifytag -# This boolean sets whether a tag may be modified after creation. By default -# it won't be. -# hooks.allowdeletebranch -# This boolean sets whether deleting branches will be allowed in the -# repository. By default they won't be. -# hooks.denycreatebranch -# This boolean sets whether remotely creating branches will be denied -# in the repository. By default this is allowed. -# - -# --- Command line -refname="$1" -oldrev="$2" -newrev="$3" - -# --- Safety check -if [ -z "$GIT_DIR" ]; then - echo "Don't run this script from the command line." >&2 - echo " (if you want, you could supply GIT_DIR then run" >&2 - echo " $0 )" >&2 - exit 1 -fi - -if [ -z "$refname" -o -z "$oldrev" -o -z "$newrev" ]; then - echo "usage: $0 " >&2 - exit 1 -fi - -# --- Config -allowunannotated=$(git config --bool hooks.allowunannotated) -allowdeletebranch=$(git config --bool hooks.allowdeletebranch) -denycreatebranch=$(git config --bool hooks.denycreatebranch) -allowdeletetag=$(git config --bool hooks.allowdeletetag) -allowmodifytag=$(git config --bool hooks.allowmodifytag) - -# check for no description -projectdesc=$(sed -e '1q' "$GIT_DIR/description") -case "$projectdesc" in -"Unnamed repository"* | "") - echo "*** Project description file hasn't been set" >&2 - exit 1 - ;; -esac - -# --- Check types -# if $newrev is 0000...0000, it's a commit to delete a ref. -zero="0000000000000000000000000000000000000000" -if [ "$newrev" = "$zero" ]; then - newrev_type=delete -else - newrev_type=$(git cat-file -t $newrev) -fi - -case "$refname","$newrev_type" in - refs/tags/*,commit) - # un-annotated tag - short_refname=${refname##refs/tags/} - if [ "$allowunannotated" != "true" ]; then - echo "*** The un-annotated tag, $short_refname, is not allowed in this repository" >&2 - echo "*** Use 'git tag [ -a | -s ]' for tags you want to propagate." >&2 - exit 1 - fi - ;; - refs/tags/*,delete) - # delete tag - if [ "$allowdeletetag" != "true" ]; then - echo "*** Deleting a tag is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/tags/*,tag) - # annotated tag - if [ "$allowmodifytag" != "true" ] && git rev-parse $refname > /dev/null 2>&1 - then - echo "*** Tag '$refname' already exists." >&2 - echo "*** Modifying a tag is not allowed in this repository." >&2 - exit 1 - fi - ;; - refs/heads/*,commit) - # branch - if [ "$oldrev" = "$zero" -a "$denycreatebranch" = "true" ]; then - echo "*** Creating a branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/heads/*,delete) - # delete branch - if [ "$allowdeletebranch" != "true" ]; then - echo "*** Deleting a branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - refs/remotes/*,commit) - # tracking branch - ;; - refs/remotes/*,delete) - # delete tracking branch - if [ "$allowdeletebranch" != "true" ]; then - echo "*** Deleting a tracking branch is not allowed in this repository" >&2 - exit 1 - fi - ;; - *) - # Anything else (is there anything else?) - echo "*** Update hook: unknown type of update to ref $refname of type $newrev_type" >&2 - exit 1 - ;; -esac - -# --- Finished -exit 0 === removed file 'vim/bundle/FastFold/.git/index' Binary files vim/bundle/FastFold/.git/index 2016-08-11 22:03:18 +0000 and vim/bundle/FastFold/.git/index 1970-01-01 00:00:00 +0000 differ === removed directory 'vim/bundle/FastFold/.git/info' === removed file 'vim/bundle/FastFold/.git/info/exclude' --- vim/bundle/FastFold/.git/info/exclude 2016-08-11 22:03:18 +0000 +++ vim/bundle/FastFold/.git/info/exclude 1970-01-01 00:00:00 +0000 @@ -1,6 +0,0 @@ -# git ls-files --others --exclude-from=.git/info/exclude -# Lines that start with '#' are comments. -# For a project mostly in C, the following would be a good set of -# exclude patterns (uncomment them if you want to use them): -# *.[oa] -# *~ === removed directory 'vim/bundle/FastFold/.git/logs' === removed file 'vim/bundle/FastFold/.git/logs/HEAD' --- vim/bundle/FastFold/.git/logs/HEAD 2016-08-11 22:03:18 +0000 +++ vim/bundle/FastFold/.git/logs/HEAD 1970-01-01 00:00:00 +0000 @@ -1,1 +0,0 @@ -0000000000000000000000000000000000000000 664c576930114cda993c88eb493285e2464eb83f Jan Pobrislo 1470952974 +0200 clone: from https://github.com/Konfekt/FastFold === removed directory 'vim/bundle/FastFold/.git/logs/refs' === removed directory 'vim/bundle/FastFold/.git/logs/refs/heads' === removed file 'vim/bundle/FastFold/.git/logs/refs/heads/master' --- vim/bundle/FastFold/.git/logs/refs/heads/master 2016-08-11 22:03:18 +0000 +++ vim/bundle/FastFold/.git/logs/refs/heads/master 1970-01-01 00:00:00 +0000 @@ -1,1 +0,0 @@ -0000000000000000000000000000000000000000 664c576930114cda993c88eb493285e2464eb83f Jan Pobrislo 1470952974 +0200 clone: from https://github.com/Konfekt/FastFold === removed directory 'vim/bundle/FastFold/.git/logs/refs/remotes' === removed directory 'vim/bundle/FastFold/.git/logs/refs/remotes/origin' === removed file 'vim/bundle/FastFold/.git/logs/refs/remotes/origin/HEAD' --- vim/bundle/FastFold/.git/logs/refs/remotes/origin/HEAD 2016-08-11 22:03:18 +0000 +++ vim/bundle/FastFold/.git/logs/refs/remotes/origin/HEAD 1970-01-01 00:00:00 +0000 @@ -1,1 +0,0 @@ -0000000000000000000000000000000000000000 664c576930114cda993c88eb493285e2464eb83f Jan Pobrislo 1470952974 +0200 clone: from https://github.com/Konfekt/FastFold === removed directory 'vim/bundle/FastFold/.git/objects' === removed directory 'vim/bundle/FastFold/.git/objects/44' === removed file 'vim/bundle/FastFold/.git/objects/44/027e6ac0d93fee349e0fb5564318b1d3f43e76' Binary files vim/bundle/FastFold/.git/objects/44/027e6ac0d93fee349e0fb5564318b1d3f43e76 2016-08-11 22:03:18 +0000 and vim/bundle/FastFold/.git/objects/44/027e6ac0d93fee349e0fb5564318b1d3f43e76 1970-01-01 00:00:00 +0000 differ === removed directory 'vim/bundle/FastFold/.git/objects/5b' === removed file 'vim/bundle/FastFold/.git/objects/5b/e224847932d51ceddaaac3399e1eec3ba20a74' Binary files vim/bundle/FastFold/.git/objects/5b/e224847932d51ceddaaac3399e1eec3ba20a74 2016-08-11 22:03:18 +0000 and vim/bundle/FastFold/.git/objects/5b/e224847932d51ceddaaac3399e1eec3ba20a74 1970-01-01 00:00:00 +0000 differ === removed directory 'vim/bundle/FastFold/.git/objects/66' === removed file 'vim/bundle/FastFold/.git/objects/66/4c576930114cda993c88eb493285e2464eb83f' --- vim/bundle/FastFold/.git/objects/66/4c576930114cda993c88eb493285e2464eb83f 2016-08-11 22:03:18 +0000 +++ vim/bundle/FastFold/.git/objects/66/4c576930114cda993c88eb493285e2464eb83f 1970-01-01 00:00:00 +0000 @@ -1,3 +0,0 @@ -x}N0FWaDʼn -u@ 13m c}{:}:p\>lUND :)|youRCIVUM4e0[AzBHԊ[X(Qt\pCM@j$vVkऐ]Ǵ%c8zϰ;}Y(-)&c=p;!4n`Zږ)c -ժJ $(dVB#PD.߷Kqo8Wղ}]1~ԿykWO>?uayy \ No newline at end of file === removed directory 'vim/bundle/FastFold/.git/objects/92' === removed file 'vim/bundle/FastFold/.git/objects/92/6ccaaf933c481eaa94173f7743a6b1ad9aeec7' Binary files vim/bundle/FastFold/.git/objects/92/6ccaaf933c481eaa94173f7743a6b1ad9aeec7 2016-08-11 22:03:18 +0000 and vim/bundle/FastFold/.git/objects/92/6ccaaf933c481eaa94173f7743a6b1ad9aeec7 1970-01-01 00:00:00 +0000 differ === removed directory 'vim/bundle/FastFold/.git/objects/99' === removed file 'vim/bundle/FastFold/.git/objects/99/caf4724a4a5d6f91b9b135093307f16b603e58' Binary files vim/bundle/FastFold/.git/objects/99/caf4724a4a5d6f91b9b135093307f16b603e58 2016-08-11 22:03:18 +0000 and vim/bundle/FastFold/.git/objects/99/caf4724a4a5d6f91b9b135093307f16b603e58 1970-01-01 00:00:00 +0000 differ === removed directory 'vim/bundle/FastFold/.git/objects/bc' === removed file 'vim/bundle/FastFold/.git/objects/bc/bd7783bccfd7ec93d69ec0d565a7b0d3c14316' Binary files vim/bundle/FastFold/.git/objects/bc/bd7783bccfd7ec93d69ec0d565a7b0d3c14316 2016-08-11 22:03:18 +0000 and vim/bundle/FastFold/.git/objects/bc/bd7783bccfd7ec93d69ec0d565a7b0d3c14316 1970-01-01 00:00:00 +0000 differ === removed directory 'vim/bundle/FastFold/.git/objects/ed' === removed file 'vim/bundle/FastFold/.git/objects/ed/2794b7657560275ae56eae80befa814e552f4e' Binary files vim/bundle/FastFold/.git/objects/ed/2794b7657560275ae56eae80befa814e552f4e 2016-08-11 22:03:18 +0000 and vim/bundle/FastFold/.git/objects/ed/2794b7657560275ae56eae80befa814e552f4e 1970-01-01 00:00:00 +0000 differ === removed directory 'vim/bundle/FastFold/.git/objects/fd' === removed file 'vim/bundle/FastFold/.git/objects/fd/76d25da507b6a85d04ec82bb7d6e2eaffce1eb' Binary files vim/bundle/FastFold/.git/objects/fd/76d25da507b6a85d04ec82bb7d6e2eaffce1eb 2016-08-11 22:03:18 +0000 and vim/bundle/FastFold/.git/objects/fd/76d25da507b6a85d04ec82bb7d6e2eaffce1eb 1970-01-01 00:00:00 +0000 differ === removed directory 'vim/bundle/FastFold/.git/objects/info' === removed directory 'vim/bundle/FastFold/.git/objects/pack' === removed file 'vim/bundle/FastFold/.git/packed-refs' --- vim/bundle/FastFold/.git/packed-refs 2016-08-11 22:03:18 +0000 +++ vim/bundle/FastFold/.git/packed-refs 1970-01-01 00:00:00 +0000 @@ -1,2 +0,0 @@ -# pack-refs with: peeled fully-peeled -664c576930114cda993c88eb493285e2464eb83f refs/remotes/origin/master === removed directory 'vim/bundle/FastFold/.git/refs' === removed directory 'vim/bundle/FastFold/.git/refs/heads' === removed file 'vim/bundle/FastFold/.git/refs/heads/master' --- vim/bundle/FastFold/.git/refs/heads/master 2016-08-11 22:03:18 +0000 +++ vim/bundle/FastFold/.git/refs/heads/master 1970-01-01 00:00:00 +0000 @@ -1,1 +0,0 @@ -664c576930114cda993c88eb493285e2464eb83f === removed directory 'vim/bundle/FastFold/.git/refs/remotes' === removed directory 'vim/bundle/FastFold/.git/refs/remotes/origin' === removed file 'vim/bundle/FastFold/.git/refs/remotes/origin/HEAD' --- vim/bundle/FastFold/.git/refs/remotes/origin/HEAD 2016-08-11 22:03:18 +0000 +++ vim/bundle/FastFold/.git/refs/remotes/origin/HEAD 1970-01-01 00:00:00 +0000 @@ -1,1 +0,0 @@ -ref: refs/remotes/origin/master === removed file 'vim/bundle/FastFold/.git/shallow' --- vim/bundle/FastFold/.git/shallow 2016-08-11 22:03:18 +0000 +++ vim/bundle/FastFold/.git/shallow 1970-01-01 00:00:00 +0000 @@ -1,1 +0,0 @@ -664c576930114cda993c88eb493285e2464eb83f === removed file 'vim/bundle/FastFold/.gitignore' --- vim/bundle/FastFold/.gitignore 2016-08-11 22:03:18 +0000 +++ vim/bundle/FastFold/.gitignore 1970-01-01 00:00:00 +0000 @@ -1,1 +0,0 @@ -doc/tags === removed file 'vim/bundle/FastFold/README.md' --- vim/bundle/FastFold/README.md 2016-08-11 22:03:18 +0000 +++ vim/bundle/FastFold/README.md 1970-01-01 00:00:00 +0000 @@ -1,91 +0,0 @@ -*FastFold* -======== - -Automatic folds (that is, folds generated by a fold method different -from `manual`), bog down VIM noticeably in insert mode. They are also often -recomputed too early (for example, when inserting an opening fold marker -whose closing counterpart is yet missing to complete the fold.) - -See http://vim.wikia.com/wiki/Keep_folds_closed_while_inserting_text -for a discussion. - -With this plug-in, the folds in the currently edited buffer are updated by an -automatic fold method only - -- when saving the buffer -- when closing or opening folds (zo, za, zc, etc...) -- when moving or operating fold-wise (zj,zk,[z,]z) -- when typing `zuz` in normal mode - -and are kept as is otherwise (by keeping the fold method set to `manual`). Each -of these triggers for updating folds can be modified or disabled by adding - -- nmap zuz (FastFoldUpdate) -- let g:fastfold_savehook = 1 -- let g:fastfold_fold_command_suffixes = ['x','X','a','A','o','O','c','C'] -- let g:fastfold_fold_movement_commands = [']z', '[z', 'zj', 'zk'] - -to the `.vimrc` file. - -For example, by adding - -``` -let g:tex_fold_enabled=1 -let g:vimsyn_folding='af' -let g:xml_syntax_folding = 1 -let g:php_folding = 1 -let g:perl_fold = 1 -``` - -to the `.vimrc` file and installing this plug-in, the folds in a TeX, Vim, XML, -PHP or Perl file are updated by the `syntax` fold method when saving the -buffer, opening, closing, moving or operating on folds, or typing `zuz` in -normal mode and are kept as is otherwise. - -*Set fold methods for every file type only*! Setting it globally risks that FastFold assumes the wrong, global, fold method instead of that intended by the file type plug-in, for example TagList. - - **Configuration** - -- If you prefer that folds are only updated manually but not when saving the buffer, - then add `let g:fastfold_savehook = 0` to your `.vimrc`. - -- If you prefer that folds are updated whenever you close or open folds by a - standard keystroke such as `zx`,`zo` or `zc`, then add `let - g:fastfold_fold_command_suffixes = []` to your `.vimrc`. - - The exact list of these standard keystrokes is `zx,zX,za,zA,zo,zO,zc,zC` and - it can be customized by changing the global variable - `g:fastfold_mapsuffixes`. If you wanted to intercept all possible fold - commands (such as zr,zm,...), change this to: - - let g:fastfold_fold_command_suffixes = - ['x','X','a','A','o','O','c','C','r','R','m','M','i','n','N'] - -- If you prefer that this plug-in does not add a normal mode mapping that updates - folds (that defaults to `zuz`), then add - `nmap (DisableFastFoldUpdate) (FastFoldUpdate) ` to your `.vimrc`. - - You can remap `zuz` to your favorite keystroke, say ``, by adding - `nmap (FastFoldUpdate)` to your `.Vimrc`. - - There is also a command `FastFoldUpdate` that updates all folds and its - variant `FastFoldUpdate!` that updates all folds and echos by which fold - method the folds were updated. - -== - - **Addons** - -- `Related Plug-ins` - -`FastFold` integrates with [vim-stay](https://github.com/kopischke/vim-stay/issues) that stores and restores the last folds -by `:mkview` and `:loadview`. - -- `CustomFoldText` - -A `CustomFoldText()` function that displays the percentage of the number of buffer lines that the folded text takes up and indents folds according to their nesting level, similar to [that](http://www.gregsexton.org/2011/03/improving-the-text-displayed-in-a-fold/) by Greg Sexton, is available at - -http://www.github.com/Konfekt/FoldText - - === removed directory 'vim/bundle/FastFold/doc' === removed file 'vim/bundle/FastFold/doc/FastFold.txt' --- vim/bundle/FastFold/doc/FastFold.txt 2016-08-11 22:03:18 +0000 +++ vim/bundle/FastFold/doc/FastFold.txt 1970-01-01 00:00:00 +0000 @@ -1,147 +0,0 @@ - FastFold, folding optimization *FastFold* *fastfold* - -=========================================================================== -0. Introduction ~ - *FastFold-intro* *fastfold-intro* - -Automatic folds - that is, folds generated by a fold method different -from `manual` - bog down VIM considerably in insert mode. Also, they are often -re-evaluated prematurely for example, when inserting an opening fold marker -whose closing counterpart has yet to be added to complete the fold. - -See http://vim.wikia.com/wiki/Keep_folds_closed_while_inserting_text -for a discussion. - -With this plug-in, the folds in the currently edited buffer are updated when -certain triggers are met: - -- when saving the buffer -- when closing or opening folds (zo, za, zc, etc...) -- when moving or operating fold-wise (zj,zk,[z,]z) -- when typing `zuz` in normal mode - -=========================================================================== -1. Commands ~ - *FastFold-commands* *fastfold-commands* - *FastFoldUpdate!* - -- `:FastFoldUpdate` updates all folds in the current buffer. -- `:FastFoldUpdate!` updates all folds & echoes what fold method was used - -- The mapping `zuz` that invokes `:FastFoldUpdate!` can be changed to your - favorite keystroke, say ``, by adding -> - nmap (FastFoldUpdate) -< - to your `.vimrc`. It can be disabled by adding -> - nmap (DisableFastFoldUpdate) (FastFoldUpdate) -< -=========================================================================== -2. Config ~ - *FastFold-config* *fastfold-config* - -Each of the above triggers can be enabled or disabled by setting the -matching global flags in your `.vimrc`. Default values are shown. -> - let g:fastfold_savehook = 1 - let g:fastfold_fdmhook = 0 - nmap zuz (FastFoldUpdate) - let g:fastfold_fold_command_suffixes = ['x','X','a','A','o','O','c','C'] - let g:fastfold_fold_movement_commands = [']z', '[z', 'zj', 'zk'] -< -For example, by adding the following to your `.vimrc` -> - let g:tex_fold_enabled=1 - let g:vimsyn_folding='af' - let g:xml_syntax_folding = 1 - let g:php_folding = 1 - let g:perl_fold = 1 -< -You will enable tex, vim, xml, php and perl syntax folding. - -Set fold methods for every file type only! Setting it globally risks that -FastFold assumes the wrong, global, fold method instead of that intended by the -file type plug-in, for example TagList. - ------------------------------ - -- FastFold updates all folds when you open or close folds by the commands - zx, zX, za, zA, zo, zO, zc, zC. This list of commands is configured by -> - let g:fastfold_fold_command_suffixes = ['x','X','a','A','o','O','c','C'] -< - To intercept all possible fold commands (such as zr,zm,...),change this to -> - let g:fastfold_fold_command_suffixes = - ['x','X','a','A','o','O','c','C','r','R','m','M','i','n','N'] -< - To disable all interceptions, change this to -> - let g:fastfold_fold_command_suffixes = [] -< -- FastFold updates all fold when you move or operate fold-wise by - the commands zj,zk,[z or ]z. This list of commands is configured by -> - let g:fastfold_fold_movement_commands = [']z', '[z', 'zj', 'zk'] -< - It can be disabled by -> - let g:fastfold_fold_movement_commands = [] -< -- FastFold updates all folds when you save a buffer. This hook is set by -> - let g:fastfold_savehook = 1 -< -- FastFold intercepts every change of the fold method by -> - let g:fastfold_fdmhook = 1 -< - This is disabled by default as it could interfere with other plugins such as - `easymotion`. - -- To disable FastFold for a list of file types, such as 'taglist', add -> -` let g:fastfold_skip_filetypes`= [ 'taglist' ] -< - to your 'vimrc'. Default value is []. - -=========================================================================== -3. Extra Notes ~ - -3.1 Related Plugins ~ - -`FastFold` integrates with the plug-in `vim-stay` available at - -https://github.com/kopischke/vim-stay - -that stores and restores the last folds by `:mkview` and `:loadview`. - ------------------------------- - -A `CustomFoldText()` function that displays the percentage of the number of -buffer lines that the folded text takes up and indents folds according to -their nesting level is available at - -http://www.github.com/Konfekt/FoldText - -3.2 Warning ~ - -FastFold overwrites your manual folds when saving the currently edited buffer, -unless - -- FastFold is disabled for this filetype by `g:fastfold_skip_filetypes`, or -- the `foldmethod=manual` since having entered the buffer. - -3.3 API ~ - -The last used fold method by which FastFold updates the folds in the current -buffer can be read off from the window local variable `w:lastdfm`. - -3.4 Thanks go to... ~ - -- starcraftman for providing this documentation, and -- blueyed, kopischke, sabauma, willywampa, and many others for reporting -issues and suggesting code improvements. - -vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl === removed directory 'vim/bundle/FastFold/plugin' === removed file 'vim/bundle/FastFold/plugin/fastfold.vim' --- vim/bundle/FastFold/plugin/fastfold.vim 2016-08-11 22:03:18 +0000 +++ vim/bundle/FastFold/plugin/fastfold.vim 1970-01-01 00:00:00 +0000 @@ -1,214 +0,0 @@ -scriptencoding utf-8 - -" LICENCE PUBLIQUE RIEN À BRANLER -" Version 1, Mars 2009 -" -" Copyright (C) 2009 Sam Hocevar -" 14 rue de Plaisance, 75014 Paris, France -" -" La copie et la distribution de copies exactes de cette licence sont -" autorisées, et toute modification est permise à condition de changer -" le nom de la licence. -" -" CONDITIONS DE COPIE, DISTRIBUTON ET MODIFICATION -" DE LA LICENCE PUBLIQUE RIEN À BRANLER -" -" 0. Faites ce que vous voulez, j’en ai RIEN À BRANLER. - -if exists('g:loaded_fastfold') || &cp - finish -endif -let g:loaded_fastfold = 1 - -let s:keepcpo = &cpo -set cpo&vim -" ------------------------------------------------------------------------------ - -if !exists('g:fastfold_fdmhook') | let g:fastfold_fdmhook = 0 | endif -if !exists('g:fastfold_savehook') | let g:fastfold_savehook = 1 | endif -if !exists('g:fastfold_fold_command_suffixes') - let g:fastfold_fold_command_suffixes = ['x','X','a','A','o','O','c','C'] -endif -if !exists('g:fastfold_fold_movement_commands') - let g:fastfold_fold_movement_commands = [']z', '[z', 'zj', 'zk'] -endif -if !exists('g:fastfold_skip_filetypes') | let g:fastfold_skip_filetypes = [] | endif - -function! s:EnterWin() - if s:Skip() - if exists('w:lastfdm') - unlet w:lastfdm - endif - else - let w:lastfdm = &l:foldmethod - setlocal foldmethod=manual - endif -endfunction - -function! s:LeaveWin() - if exists('w:predifffdm') - if empty(&l:foldmethod) || &l:foldmethod is# 'manual' - let &l:foldmethod = w:predifffdm - unlet w:predifffdm - return - elseif &l:foldmethod isnot# 'diff' - unlet w:predifffdm - endif - endif - - if exists('w:lastfdm') && &l:foldmethod is# 'diff' - let w:predifffdm = w:lastfdm - endif - - if exists('w:lastfdm') && &l:foldmethod is# 'manual' - let &l:foldmethod = w:lastfdm - endif -endfunction - -" Like windo but restore the current buffer. -" See http://vim.wikia.com/wiki/Run_a_command_in_multiple_buffers#Restoring_position -function! s:WinDo( command ) - " avoid errors in CmdWin - if exists('*getcmdwintype') && !empty(getcmdwintype()) - return - endif - " Work around Vim bug. - " See https://groups.google.com/forum/#!topic/vim_dev/LLTw8JV6wKg - let curaltwin = winnr('#') ? winnr('#') : 1 - let currwin=winnr() - if &scrollopt =~# '\' - set scrollopt-=jump - let l:restore = 'set scrollopt+=jump' - endif - silent! execute 'keepjumps noautocmd windo ' . a:command - silent! execute 'noautocmd ' . curaltwin . 'wincmd w' - silent! execute 'noautocmd ' . currwin . 'wincmd w' - if exists('l:restore') - exe l:restore - endif -endfunction - -" WinEnter then TabEnter then BufEnter then BufWinEnter -function! s:UpdateWin(check) - " skip if another session still loading - if a:check && exists('g:SessionLoad') | return | endif - - let s:curwin = winnr() - call s:WinDo('if winnr() is s:curwin | call s:LeaveWin() | endif') - call s:WinDo('if winnr() is s:curwin | call s:EnterWin() | endif') -endfunction - -function! s:UpdateBuf(feedback) - let s:curbuf = bufnr('%') - call s:WinDo("if bufnr('%') is s:curbuf | call s:LeaveWin() | endif") - call s:WinDo("if bufnr('%') is s:curbuf | call s:EnterWin() | endif") - - if !a:feedback | return | endif - - if !exists('w:lastfdm') - echomsg "'" . &l:foldmethod . "' folds already continuously updated" - else - echomsg "updated '" . w:lastfdm . "' folds" - endif -endfunction - -function! s:UpdateTab() - " skip if another session still loading - if exists('g:SessionLoad') | return | endif - - call s:WinDo('call s:LeaveWin()') - call s:WinDo('call s:EnterWin()') -endfunction - -function! s:Skip() - if !s:isReasonable() | return 1 | endif - if !&l:modifiable | return 1 | endif - if s:inSkipList() | return 1 | endif - - return 0 -endfunction - -function! s:isReasonable() - if &l:foldmethod is# 'syntax' || &l:foldmethod is# 'expr' - return 1 - else - return 0 - endif -endfunction - -function! s:inSkipList() - for ifiles in g:fastfold_skip_filetypes - if index(g:fastfold_skip_filetypes, &l:filetype) >= 0 - return 1 - endif - endfor - return 0 -endfunction - -command! -bar -bang FastFoldUpdate call s:UpdateBuf(0) - -nnoremap (FastFoldUpdate) :FastFoldUpdate! - -if !hasmapto('(FastFoldUpdate)', 'n') && empty(mapcheck('zuz', 'n')) - nmap zuz (FastFoldUpdate) -endif - -for suffix in g:fastfold_fold_command_suffixes - execute 'nnoremap z'.suffix.' :call UpdateWin(0)z'.suffix -endfor - -for cmd in g:fastfold_fold_movement_commands - exe "nnoremap " . cmd. " ':call UpdateWin(0)'.v:count." . "'".cmd."'" - exe "xnoremap " . cmd. " ':call UpdateWin(0)gv'.v:count." . "'".cmd."'" - exe "onoremap " . cmd. " ':call UpdateWin(0)' . '\"' . v:register . v:operator . v:count1 . " . "'".cmd."'" -endfor - -augroup FastFold - autocmd! - autocmd VimEnter * call s:init() -augroup end - -function! s:init() - call s:UpdateTab() - augroup FastFold - autocmd! - " Make &l:foldmethod local to Buffer and NOT Window. - " UpdateBuf/Win(1) = skip if another session is still loading. - autocmd BufEnter,WinEnter * - \ if exists('b:lastfdm') | let w:lastfdm = b:lastfdm | call s:LeaveWin() | call s:EnterWin() | endif - autocmd BufLeave,WinLeave * - \ call s:LeaveWin() | call s:EnterWin() | - \ if exists('w:lastfdm') | let b:lastfdm = w:lastfdm | - \ elseif exists('b:lastfdm') | unlet b:lastfdm | endif - autocmd BufEnter,WinEnter * - \ if &l:foldmethod isnot# 'diff' && exists('b:predifffdm') | call s:UpdateBuf(0) | endif - autocmd BufLeave,WinLeave * - \ if exists('w:predifffdm') | let b:predifffdm = w:predifffdm | - \ elseif exists('b:predifffdm') | unlet b:predifffdm | endif - - " BufWinEnter = to change &l:foldmethod by modelines. - autocmd BufWinEnter,FileType * call s:UpdateWin(1) - " So that FastFold functions correctly after :loadview. - autocmd SessionLoadPost * call s:UpdateWin(0) - - autocmd TabEnter * call s:UpdateTab() - - " Update folds on reload. - autocmd BufReadPost * - \ if !exists('b:already_loaded') | let b:already_loaded = 1 | - \ else | call s:UpdateBuf(0) | endif - " Update folds on saving. - if g:fastfold_savehook - autocmd BufWritePost * call s:UpdateBuf(0) - endif - if g:fastfold_fdmhook - if exists('##OptionSet') - autocmd OptionSet foldmethod call s:UpdateBuf(0) - endif - endif - augroup end -endfunction - -" ------------------------------------------------------------------------------ -let &cpo= s:keepcpo -unlet s:keepcpo === modified file 'vim/bundle/SearchParty/.git/index' Binary files vim/bundle/SearchParty/.git/index 2016-08-11 22:03:18 +0000 and vim/bundle/SearchParty/.git/index 2016-08-04 08:15:09 +0000 differ === modified file 'vim/bundle/SearchParty/.git/logs/HEAD' --- vim/bundle/SearchParty/.git/logs/HEAD 2016-08-11 22:03:18 +0000 +++ vim/bundle/SearchParty/.git/logs/HEAD 2016-08-04 08:15:09 +0000 @@ -1,1 +1,1 @@ -0000000000000000000000000000000000000000 f0d68ee68d8cb6824181e01f3463fd2dd7963e93 Jan Pobrislo 1470952976 +0200 clone: from https://github.com/dahu/SearchParty.git +0000000000000000000000000000000000000000 f0d68ee68d8cb6824181e01f3463fd2dd7963e93 Jan Pobrislo 1470298361 +0200 clone: from https://github.com/dahu/SearchParty.git === modified file 'vim/bundle/SearchParty/.git/logs/refs/heads/master' --- vim/bundle/SearchParty/.git/logs/refs/heads/master 2016-08-11 22:03:18 +0000 +++ vim/bundle/SearchParty/.git/logs/refs/heads/master 2016-08-04 08:15:09 +0000 @@ -1,1 +1,1 @@ -0000000000000000000000000000000000000000 f0d68ee68d8cb6824181e01f3463fd2dd7963e93 Jan Pobrislo 1470952976 +0200 clone: from https://github.com/dahu/SearchParty.git +0000000000000000000000000000000000000000 f0d68ee68d8cb6824181e01f3463fd2dd7963e93 Jan Pobrislo 1470298361 +0200 clone: from https://github.com/dahu/SearchParty.git === modified file 'vim/bundle/SearchParty/.git/logs/refs/remotes/origin/HEAD' --- vim/bundle/SearchParty/.git/logs/refs/remotes/origin/HEAD 2016-08-11 22:03:18 +0000 +++ vim/bundle/SearchParty/.git/logs/refs/remotes/origin/HEAD 2016-08-04 08:15:09 +0000 @@ -1,1 +1,1 @@ -0000000000000000000000000000000000000000 f0d68ee68d8cb6824181e01f3463fd2dd7963e93 Jan Pobrislo 1470952976 +0200 clone: from https://github.com/dahu/SearchParty.git +0000000000000000000000000000000000000000 f0d68ee68d8cb6824181e01f3463fd2dd7963e93 Jan Pobrislo 1470298361 +0200 clone: from https://github.com/dahu/SearchParty.git === modified file 'vim/bundle/csv.vim/.git/index' Binary files vim/bundle/csv.vim/.git/index 2016-08-11 22:03:18 +0000 and vim/bundle/csv.vim/.git/index 2016-08-04 08:15:09 +0000 differ === modified file 'vim/bundle/csv.vim/.git/logs/HEAD' --- vim/bundle/csv.vim/.git/logs/HEAD 2016-08-11 22:03:18 +0000 +++ vim/bundle/csv.vim/.git/logs/HEAD 2016-08-04 08:15:09 +0000 @@ -1,1 +1,1 @@ -0000000000000000000000000000000000000000 16634f646c9d1f5756d34ed35dbd6b9d5bf34fa0 Jan Pobrislo 1470952973 +0200 clone: from https://github.com/chrisbra/csv.vim +0000000000000000000000000000000000000000 16634f646c9d1f5756d34ed35dbd6b9d5bf34fa0 Jan Pobrislo 1470298359 +0200 clone: from https://github.com/chrisbra/csv.vim === modified file 'vim/bundle/csv.vim/.git/logs/refs/heads/master' --- vim/bundle/csv.vim/.git/logs/refs/heads/master 2016-08-11 22:03:18 +0000 +++ vim/bundle/csv.vim/.git/logs/refs/heads/master 2016-08-04 08:15:09 +0000 @@ -1,1 +1,1 @@ -0000000000000000000000000000000000000000 16634f646c9d1f5756d34ed35dbd6b9d5bf34fa0 Jan Pobrislo 1470952973 +0200 clone: from https://github.com/chrisbra/csv.vim +0000000000000000000000000000000000000000 16634f646c9d1f5756d34ed35dbd6b9d5bf34fa0 Jan Pobrislo 1470298359 +0200 clone: from https://github.com/chrisbra/csv.vim === modified file 'vim/bundle/csv.vim/.git/logs/refs/remotes/origin/HEAD' --- vim/bundle/csv.vim/.git/logs/refs/remotes/origin/HEAD 2016-08-11 22:03:18 +0000 +++ vim/bundle/csv.vim/.git/logs/refs/remotes/origin/HEAD 2016-08-04 08:15:09 +0000 @@ -1,1 +1,1 @@ -0000000000000000000000000000000000000000 16634f646c9d1f5756d34ed35dbd6b9d5bf34fa0 Jan Pobrislo 1470952973 +0200 clone: from https://github.com/chrisbra/csv.vim +0000000000000000000000000000000000000000 16634f646c9d1f5756d34ed35dbd6b9d5bf34fa0 Jan Pobrislo 1470298359 +0200 clone: from https://github.com/chrisbra/csv.vim === modified file 'vim/bundle/icalendar.vim/.git/index' Binary files vim/bundle/icalendar.vim/.git/index 2016-08-11 22:03:18 +0000 and vim/bundle/icalendar.vim/.git/index 2016-08-04 08:15:09 +0000 differ === modified file 'vim/bundle/icalendar.vim/.git/logs/HEAD' --- vim/bundle/icalendar.vim/.git/logs/HEAD 2016-08-11 22:03:18 +0000 +++ vim/bundle/icalendar.vim/.git/logs/HEAD 2016-08-04 08:15:09 +0000 @@ -1,1 +1,1 @@ -0000000000000000000000000000000000000000 542fff45385b1b5ad9781b0ad4878ba3b7ee9d5f Jan Pobrislo 1470952975 +0200 clone: from https://github.com/vim-scripts/icalendar.vim.git +0000000000000000000000000000000000000000 542fff45385b1b5ad9781b0ad4878ba3b7ee9d5f Jan Pobrislo 1470298360 +0200 clone: from https://github.com/vim-scripts/icalendar.vim.git === modified file 'vim/bundle/icalendar.vim/.git/logs/refs/heads/master' --- vim/bundle/icalendar.vim/.git/logs/refs/heads/master 2016-08-11 22:03:18 +0000 +++ vim/bundle/icalendar.vim/.git/logs/refs/heads/master 2016-08-04 08:15:09 +0000 @@ -1,1 +1,1 @@ -0000000000000000000000000000000000000000 542fff45385b1b5ad9781b0ad4878ba3b7ee9d5f Jan Pobrislo 1470952975 +0200 clone: from https://github.com/vim-scripts/icalendar.vim.git +0000000000000000000000000000000000000000 542fff45385b1b5ad9781b0ad4878ba3b7ee9d5f Jan Pobrislo 1470298360 +0200 clone: from https://github.com/vim-scripts/icalendar.vim.git === modified file 'vim/bundle/icalendar.vim/.git/logs/refs/remotes/origin/HEAD' --- vim/bundle/icalendar.vim/.git/logs/refs/remotes/origin/HEAD 2016-08-11 22:03:18 +0000 +++ vim/bundle/icalendar.vim/.git/logs/refs/remotes/origin/HEAD 2016-08-04 08:15:09 +0000 @@ -1,1 +1,1 @@ -0000000000000000000000000000000000000000 542fff45385b1b5ad9781b0ad4878ba3b7ee9d5f Jan Pobrislo 1470952975 +0200 clone: from https://github.com/vim-scripts/icalendar.vim.git +0000000000000000000000000000000000000000 542fff45385b1b5ad9781b0ad4878ba3b7ee9d5f Jan Pobrislo 1470298360 +0200 clone: from https://github.com/vim-scripts/icalendar.vim.git === modified file 'vim/bundle/tabular/.git/index' Binary files vim/bundle/tabular/.git/index 2016-08-11 22:03:18 +0000 and vim/bundle/tabular/.git/index 2016-08-04 08:15:09 +0000 differ === modified file 'vim/bundle/tabular/.git/logs/HEAD' --- vim/bundle/tabular/.git/logs/HEAD 2016-08-11 22:03:18 +0000 +++ vim/bundle/tabular/.git/logs/HEAD 2016-08-04 08:15:09 +0000 @@ -1,1 +1,1 @@ -0000000000000000000000000000000000000000 00e1e7fcdbc6d753e0bc8043e0d2546fa81bf367 Jan Pobrislo 1470952977 +0200 clone: from https://github.com/godlygeek/tabular.git +0000000000000000000000000000000000000000 00e1e7fcdbc6d753e0bc8043e0d2546fa81bf367 Jan Pobrislo 1470298362 +0200 clone: from https://github.com/godlygeek/tabular.git === modified file 'vim/bundle/tabular/.git/logs/refs/heads/master' --- vim/bundle/tabular/.git/logs/refs/heads/master 2016-08-11 22:03:18 +0000 +++ vim/bundle/tabular/.git/logs/refs/heads/master 2016-08-04 08:15:09 +0000 @@ -1,1 +1,1 @@ -0000000000000000000000000000000000000000 00e1e7fcdbc6d753e0bc8043e0d2546fa81bf367 Jan Pobrislo 1470952977 +0200 clone: from https://github.com/godlygeek/tabular.git +0000000000000000000000000000000000000000 00e1e7fcdbc6d753e0bc8043e0d2546fa81bf367 Jan Pobrislo 1470298362 +0200 clone: from https://github.com/godlygeek/tabular.git === modified file 'vim/bundle/tabular/.git/logs/refs/remotes/origin/HEAD' --- vim/bundle/tabular/.git/logs/refs/remotes/origin/HEAD 2016-08-11 22:03:18 +0000 +++ vim/bundle/tabular/.git/logs/refs/remotes/origin/HEAD 2016-08-04 08:15:09 +0000 @@ -1,1 +1,1 @@ -0000000000000000000000000000000000000000 00e1e7fcdbc6d753e0bc8043e0d2546fa81bf367 Jan Pobrislo 1470952977 +0200 clone: from https://github.com/godlygeek/tabular.git +0000000000000000000000000000000000000000 00e1e7fcdbc6d753e0bc8043e0d2546fa81bf367 Jan Pobrislo 1470298362 +0200 clone: from https://github.com/godlygeek/tabular.git === modified file 'vim/bundle/vim-KWEasy/.git/index' Binary files vim/bundle/vim-KWEasy/.git/index 2016-08-11 22:03:18 +0000 and vim/bundle/vim-KWEasy/.git/index 2016-08-04 08:15:09 +0000 differ === modified file 'vim/bundle/vim-KWEasy/.git/logs/HEAD' --- vim/bundle/vim-KWEasy/.git/logs/HEAD 2016-08-11 22:03:18 +0000 +++ vim/bundle/vim-KWEasy/.git/logs/HEAD 2016-08-04 08:15:09 +0000 @@ -1,1 +1,1 @@ -0000000000000000000000000000000000000000 b3a76e10c15240ed10ee8e69385cb275ba4c600d Jan Pobrislo 1470952979 +0200 clone: from https://github.com/dahu/vim-KWEasy +0000000000000000000000000000000000000000 b3a76e10c15240ed10ee8e69385cb275ba4c600d Jan Pobrislo 1470298363 +0200 clone: from https://github.com/dahu/vim-KWEasy === modified file 'vim/bundle/vim-KWEasy/.git/logs/refs/heads/master' --- vim/bundle/vim-KWEasy/.git/logs/refs/heads/master 2016-08-11 22:03:18 +0000 +++ vim/bundle/vim-KWEasy/.git/logs/refs/heads/master 2016-08-04 08:15:09 +0000 @@ -1,1 +1,1 @@ -0000000000000000000000000000000000000000 b3a76e10c15240ed10ee8e69385cb275ba4c600d Jan Pobrislo 1470952979 +0200 clone: from https://github.com/dahu/vim-KWEasy +0000000000000000000000000000000000000000 b3a76e10c15240ed10ee8e69385cb275ba4c600d Jan Pobrislo 1470298363 +0200 clone: from https://github.com/dahu/vim-KWEasy === modified file 'vim/bundle/vim-KWEasy/.git/logs/refs/remotes/origin/HEAD' --- vim/bundle/vim-KWEasy/.git/logs/refs/remotes/origin/HEAD 2016-08-11 22:03:18 +0000 +++ vim/bundle/vim-KWEasy/.git/logs/refs/remotes/origin/HEAD 2016-08-04 08:15:09 +0000 @@ -1,1 +1,1 @@ -0000000000000000000000000000000000000000 b3a76e10c15240ed10ee8e69385cb275ba4c600d Jan Pobrislo 1470952979 +0200 clone: from https://github.com/dahu/vim-KWEasy +0000000000000000000000000000000000000000 b3a76e10c15240ed10ee8e69385cb275ba4c600d Jan Pobrislo 1470298363 +0200 clone: from https://github.com/dahu/vim-KWEasy === modified file 'vim/bundle/vim-eunuch/.git/index' Binary files vim/bundle/vim-eunuch/.git/index 2016-08-11 22:03:18 +0000 and vim/bundle/vim-eunuch/.git/index 2016-08-04 08:15:09 +0000 differ === modified file 'vim/bundle/vim-eunuch/.git/logs/HEAD' --- vim/bundle/vim-eunuch/.git/logs/HEAD 2016-08-11 22:03:18 +0000 +++ vim/bundle/vim-eunuch/.git/logs/HEAD 2016-08-04 08:15:09 +0000 @@ -1,1 +1,1 @@ -0000000000000000000000000000000000000000 5ee2b82b565e6c6d80f1cb7735c78f66a159b198 Jan Pobrislo 1470952978 +0200 clone: from git://github.com/tpope/vim-eunuch.git +0000000000000000000000000000000000000000 5ee2b82b565e6c6d80f1cb7735c78f66a159b198 Jan Pobrislo 1470298362 +0200 clone: from git://github.com/tpope/vim-eunuch.git === modified file 'vim/bundle/vim-eunuch/.git/logs/refs/heads/master' --- vim/bundle/vim-eunuch/.git/logs/refs/heads/master 2016-08-11 22:03:18 +0000 +++ vim/bundle/vim-eunuch/.git/logs/refs/heads/master 2016-08-04 08:15:09 +0000 @@ -1,1 +1,1 @@ -0000000000000000000000000000000000000000 5ee2b82b565e6c6d80f1cb7735c78f66a159b198 Jan Pobrislo 1470952978 +0200 clone: from git://github.com/tpope/vim-eunuch.git +0000000000000000000000000000000000000000 5ee2b82b565e6c6d80f1cb7735c78f66a159b198 Jan Pobrislo 1470298362 +0200 clone: from git://github.com/tpope/vim-eunuch.git === modified file 'vim/bundle/vim-eunuch/.git/logs/refs/remotes/origin/HEAD' --- vim/bundle/vim-eunuch/.git/logs/refs/remotes/origin/HEAD 2016-08-11 22:03:18 +0000 +++ vim/bundle/vim-eunuch/.git/logs/refs/remotes/origin/HEAD 2016-08-04 08:15:09 +0000 @@ -1,1 +1,1 @@ -0000000000000000000000000000000000000000 5ee2b82b565e6c6d80f1cb7735c78f66a159b198 Jan Pobrislo 1470952978 +0200 clone: from git://github.com/tpope/vim-eunuch.git +0000000000000000000000000000000000000000 5ee2b82b565e6c6d80f1cb7735c78f66a159b198 Jan Pobrislo 1470298362 +0200 clone: from git://github.com/tpope/vim-eunuch.git