21 Sep, 2012
4 commits
-
Saving the hash of bundles that don't have a local git clone doesn't make sense.
-
This command is used to restore from a snapshot file provided as an argument.
The snapshot file can be generated by the `antigen-snapshot` command. -
Creates a snapshot file with some basic metadata information and pairs of repo
urls and their version hashes. Tests included.
20 Sep, 2012
3 commits
-
Update the README further with more theme goodness
19 Sep, 2012
3 commits
-
The `-theme` command is now little more than an extension to the `-bundle`
command. The difference is that this command sets `--btype=theme`, which is what
indicates that this bundle is a theme.As such, the `-theme` command accepts all the documented options taken by
`-bundle`.
18 Sep, 2012
3 commits
-
Half-fix #26. Add auto-completion for `antigen` sub-commands.
16 Sep, 2012
6 commits
-
Conflicts:
.travis.yml -
Adding the oh-my-zsh way of organising plugins as a recommending way of writing
plugins. Though of course, in the spirit of antigen, it is not required.
29 Aug, 2012
1 commit
-
Try to fix CI
28 Aug, 2012
3 commits
27 Aug, 2012
3 commits
26 Aug, 2012
2 commits
-
The BSD version of `sed` apparently does not have the `-r` option. So,
eliminated the use of `sed` in this place altogather. -
The `-r` is not present on BSD version of sed (which is used on OSX).
16 Aug, 2012
1 commit
12 Aug, 2012
2 commits
-
Use this command to revert an `antigen-update`.
11 Aug, 2012
9 commits
-
The memoized results of these functions cannot be saved in a global hash map,
becuase these functions are always run in a subshell. Changes to variables in
the subshell do not reflect in the main shell instance. We'd have to resort to
use the `$REPLY` ways returning the result from these functions, if they were to
be memoized. But that way of doing things sucks. Totally unreadable. So, just
not memoizing. -
The positional arguments can also be specified as keyword arguments.