07 Jun, 2012
5 commits
06 Jun, 2012
5 commits
-
The previously used two variables ANTIGEN_REPO_CACHE and ANTIGEN_BUNDLE_DIR are
now replaced by a single variable, ADOTDIR. Defaults to `$HOME/.antigen`.
05 Jun, 2012
21 commits
-
The `bundle-list` command is used to list the currently specified bundles.
-
Where there are no bundles, or the bundle directory does not exist, the
`bundle-cleanup` command gives out an error. This fix is to make it give a saner
message instead. -
Current theme and the plugins installed on-spot in current session should not be
listed in the cleanup list. They were because of a problem with updating the
`$bundles` record. This is now fixed.If the above `if` is directly piped to the below `while`, the contents inside
the `if` construct are run in a new subshell, so changes to the `$bundles`
variable are lost after the `if` construct finishes. So, we need the temporary
`$install_bundles` variable. -
This message comes up every time you switch the prompt theme.
-
compinit needs to be loaded at startup too, or the compdef function won't be
defined. -
bundle-init is now renamed to bundle-apply and is to called after all bundle
specifications are given. Also added notes in the README file.The reason is the compinit function needs to be run after adding all the
required directories to `fpath`. The only reliable and performant way to do it
would be to explicitly call a function that does it after specifying all the
bundles. -
The -T is not really required here as we're checking and deleting
the target if it already exists. -
This particular plugin does not provide a completion file with the same name as
the plugin name, but does provide completions for a number of other commands.
So we just add all plugin paths to fpath.See https://github.com/sharat87/lawn/issues/1
04 Jun, 2012
1 commit
-
Instead of making a copy and fixing problems with it (like copying/excluding
.git), we now simply create a soft link to the plugin location.
03 Jun, 2012
5 commits
-
The `bundle` command got some new super short syntax sugar. Notes about it in
the README. -
Super short syntax for specifying the plugins. Just give the name to `bundle`
command it will be downloaded from the default antigen repo. -
Trying to copy the .git directory is futile in some situations. So, copy
everything else except of .git directories.
25 May, 2012
3 commits