From 1b8cae15c4fea17f0fce463c66ccfbb658192ecf Mon Sep 17 00:00:00 2001 From: miklos-martin Date: Wed, 27 Mar 2013 14:35:10 -0700 Subject: [PATCH] Updated Plugins (markdown) --- Plugins.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/Plugins.md b/Plugins.md index 023b413..6d1462f 100644 --- a/Plugins.md +++ b/Plugins.md @@ -101,6 +101,29 @@ Enables [autojump](https://github.com/joelthelion/autojump/wiki/) if installed w This does not add any commands on its own. +## bower + +Bower is a package manager for the web. +This plugin provides some aliases and completitions for this great tool. + +### Aliases + +* `bi`: installs a package (`bower install`) +* `bl`: lists installed packages (`bower list`) +* `bs`: searches for packages (`bower search`) + +### Completition + +It completes the basic commands for bower. It uses the `bower help` command to achieve this, not a burned-in list of commands. +It also provides completition for bower install, uses the output of bower search. It takes a few seconds for the first time (in the session), but then the output of `bower search` is cached, so things then speed up a lot. + +### Example + +``` +# to install jquery for example +bi jq +``` + ## brew **Maintainer:** [robbyrussell][robbyrussell]