summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'plugins')
-rw-r--r--plugins/apache2-macports/apache2-macports.plugin.zsh6
-rw-r--r--plugins/brew/_brew (renamed from plugins/brew.plugin.zsh)3
-rw-r--r--plugins/bundler/bundler.plugin.zsh3
-rw-r--r--plugins/cap/cap.plugin.zsh (renamed from plugins/rails.plugin.zsh)17
-rw-r--r--plugins/command-not-found/command-not-found.plugin.zsh5
-rw-r--r--plugins/compleat/compleat.plugin.zsh22
-rw-r--r--plugins/cpanm/_cpanm67
-rw-r--r--plugins/deb/deb.plugin.zsh13
-rw-r--r--plugins/debian/debian.plugin.zsh60
-rw-r--r--plugins/dirpersist/dirpersist.plugin.zsh39
-rw-r--r--plugins/gem/_gem64
-rw-r--r--plugins/git-flow/git-flow.plugin.zsh332
-rw-r--r--plugins/git/git.plugin.zsh (renamed from plugins/git.plugin.zsh)28
-rw-r--r--plugins/github/_github40
-rw-r--r--plugins/github/github.plugin.zsh7
-rw-r--r--plugins/lein/lein.plugin.zsh27
-rw-r--r--plugins/lighthouse/lighthouse.plugin.zsh (renamed from plugins/lighthouse.plugin.zsh)4
-rw-r--r--plugins/lol/lol.plugin.zsh26
-rw-r--r--plugins/macports/_port89
-rw-r--r--plugins/macports/macports.plugin.zsh8
-rw-r--r--plugins/mysql-macports.plugin.zsh6
-rw-r--r--plugins/mysql-macports/mysql-macports.plugin.zsh8
-rw-r--r--plugins/npm/_npm19
-rw-r--r--plugins/osx.plugin.zsh11
-rw-r--r--plugins/osx/osx.plugin.zsh57
-rw-r--r--plugins/perl/perl.plugin.zsh62
-rw-r--r--plugins/phing/phing.plugin.zsh20
-rw-r--r--plugins/pip/_pip46
-rw-r--r--plugins/rails/rails.plugin.zsh13
-rw-r--r--plugins/rails3/rails3.plugin.zsh30
-rw-r--r--plugins/redis-cli/_redis-cli142
-rw-r--r--plugins/ruby/ruby.plugin.zsh (renamed from plugins/ruby.plugin.zsh)0
-rw-r--r--plugins/rvm/_rvm147
-rw-r--r--plugins/rvm/rvm.plugin.zsh3
-rw-r--r--plugins/ssh-agent/ssh-agent.plugin.zsh23
-rw-r--r--plugins/svn/svn.plugin.zsh42
-rw-r--r--plugins/textmate/textmate.plugin.zsh (renamed from plugins/textmate.plugin.zsh)0
-rw-r--r--plugins/vagrant/_vagrant104
-rw-r--r--plugins/vi-mode/vi-mode.plugin.zsh22
-rw-r--r--plugins/yum/yum.plugin.zsh12
40 files changed, 1587 insertions, 40 deletions
diff --git a/plugins/apache2-macports/apache2-macports.plugin.zsh b/plugins/apache2-macports/apache2-macports.plugin.zsh
new file mode 100644
index 000000000..1caa4cf9d
--- /dev/null
+++ b/plugins/apache2-macports/apache2-macports.plugin.zsh
@@ -0,0 +1,6 @@
+# commands to control local apache2 server installation
+# paths are for osx installation via macports
+
+alias apache2start='sudo /opt/local/etc/LaunchDaemons/org.macports.apache2/apache2.wrapper start'
+alias apache2stop='sudo /opt/local/etc/LaunchDaemons/org.macports.apache2/apache2.wrapper stop'
+alias apache2restart='sudo /opt/local/etc/LaunchDaemons/org.macports.apache2/apache2.wrapper restart'
diff --git a/plugins/brew.plugin.zsh b/plugins/brew/_brew
index 162eb6442..cee1e25f0 100644
--- a/plugins/brew.plugin.zsh
+++ b/plugins/brew/_brew
@@ -1,4 +1,5 @@
#compdef brew
+#autoload
# imported from the latest homebrew contributions
@@ -30,6 +31,7 @@ _1st_arguments=(
'search:search for a formula (/regex/ or string)'
'unlink:unlink a formula'
'update:freshen up links'
+ 'upgrade:upgrade outdated formulae'
'uses:show formulas which depend on a formula'
)
@@ -65,3 +67,4 @@ case "$words[1]" in
_brew_installed_formulae
_wanted installed_formulae expl 'installed formulae' compadd -a installed_formulae ;;
esac
+
diff --git a/plugins/bundler/bundler.plugin.zsh b/plugins/bundler/bundler.plugin.zsh
new file mode 100644
index 000000000..fb40e2cec
--- /dev/null
+++ b/plugins/bundler/bundler.plugin.zsh
@@ -0,0 +1,3 @@
+alias be="bundle exec"
+alias bi="bundle install"
+alias bu="bundle update"
diff --git a/plugins/rails.plugin.zsh b/plugins/cap/cap.plugin.zsh
index 45bebb722..a0fa21d00 100644
--- a/plugins/rails.plugin.zsh
+++ b/plugins/cap/cap.plugin.zsh
@@ -1,14 +1,3 @@
-
-alias ss='thin --stats "/thin/stats" start'
-alias sg='ruby script/generate'
-alias sd='ruby script/destroy'
-alias sp='ruby script/plugin'
-alias ssp='ruby script/spec'
-alias rdbm='rake db:migrate'
-alias sc='ruby script/console'
-alias sd='ruby script/server --debugger'
-alias devlog='tail -f log/development.log'
-
function _cap_does_task_list_need_generating () {
if [ ! -f .cap_tasks~ ]; then return 0;
else
@@ -29,8 +18,4 @@ function _cap () {
fi
}
-compctl -K _cap cap
-
-function remote_console() {
- /usr/bin/env ssh $1 "( cd $2 && ruby script/console production )"
-}
+compctl -K _cap cap \ No newline at end of file
diff --git a/plugins/command-not-found/command-not-found.plugin.zsh b/plugins/command-not-found/command-not-found.plugin.zsh
new file mode 100644
index 000000000..5ab03d5a9
--- /dev/null
+++ b/plugins/command-not-found/command-not-found.plugin.zsh
@@ -0,0 +1,5 @@
+# Uses the command-not-found package zsh support
+# as seen in http://www.porcheron.info/command-not-found-for-zsh/
+# this is installed in Ubuntu
+
+source /etc/zsh_command_not_found
diff --git a/plugins/compleat/compleat.plugin.zsh b/plugins/compleat/compleat.plugin.zsh
new file mode 100644
index 000000000..8d16a5687
--- /dev/null
+++ b/plugins/compleat/compleat.plugin.zsh
@@ -0,0 +1,22 @@
+# ------------------------------------------------------------------------------
+# FILE: compleat.plugin.zsh
+# DESCRIPTION: oh-my-zsh plugin file.
+# AUTHOR: Sorin Ionescu (sorin.ionescu@gmail.com)
+# VERSION: 1.0.0
+# ------------------------------------------------------------------------------
+
+
+if (( ${+commands[compleat]} )); then
+ local prefix="${commands[compleat]:h:h}"
+ local setup="${prefix}/share/compleat-1.0/compleat_setup"
+
+ if [[ -f "$setup" ]]; then
+ if ! bashcompinit >/dev/null 2>&1; then
+ autoload -U bashcompinit
+ bashcompinit -i
+ fi
+
+ source "$setup"
+ fi
+fi
+
diff --git a/plugins/cpanm/_cpanm b/plugins/cpanm/_cpanm
new file mode 100644
index 000000000..58451d35a
--- /dev/null
+++ b/plugins/cpanm/_cpanm
@@ -0,0 +1,67 @@
+#compdef cpanm
+
+##
+# cpanminus Z Shell completion script
+##
+#
+# Current supported cpanm version: 1.4000 (Tue Mar 8 01:00:49 PST 2011)
+#
+# The latest code is always located at:
+# https://github.com/rshhh/cpanminus/blob/master/etc/_cpanm
+#
+
+local arguments curcontext="$curcontext"
+typeset -A opt_args
+
+
+arguments=(
+
+# Commands
+# '(--install -i)'{--install,-i}'[Installs the modules]'
+ '(- :)--self-upgrade[Upgrades itself]'
+ '(- :)--info[Displays distribution info on CPAN]'
+ '(--installdeps)--installdeps[Only install dependencies]'
+ '(--look)--look[Download/unpack the distribution and then open the directory with your shell]'
+ '(- :)'{--help,-h}'[Displays help information]'
+ '(- :)'{--version,-V}'[Displays software version]'
+
+# Options
+ {--force,-f}'[Force install]'
+ {--notest,-n}'[Do not run unit tests]'
+ {--sudo,-S}'[sudo to run install commands]'
+ '(-v --verbose --quiet -q)'{--verbose,-v}'[Turns on chatty output]'
+ '(-q --quiet --verbose -v)'{--quiet,-q}'[Turns off all output]'
+ {--local-lib,-l}'[Specify the install base to install modules]'
+ {--local-lib-contained,-L}'[Specify the install base to install all non-core modules]'
+ '--mirror[Specify the base URL for the mirror (e.g. http://cpan.cpantesters.org/)]:URLs:_urls'
+ '--mirror-only[Use the mirror\''s index file instead of the CPAN Meta DB]'
+ '--prompt[Prompt when configure/build/test fails]'
+ '--reinstall[Reinstall the distribution even if you already have the latest version installed]'
+ '--interactive[Turn on interactive configure]'
+
+ '--scandeps[Scan the depencencies of given modules and output the tree in a text format]'
+ '--format[Specify what format to display the scanned dependency tree]:scandeps format:(tree json yaml dists)'
+
+ '--save-dists[Specify the optional directory path to copy downloaded tarballs]'
+# '--uninst-shadows[Uninstalls the shadow files of the distribution that you\''re installing]'
+
+ '--auto-cleanup[Number of days that cpanm\''s work directories expire in. Defaults to 7]'
+ '(--no-man-pages)--man-pages[Generates man pages for executables (man1) and libraries (man3)]'
+ '(--man-pages)--no-man-pages[Do not generate man pages]'
+
+
+ # Note: Normally with "--lwp", "--wget" and "--curl" options set to true (which is the default) cpanm tries LWP,
+ # Wget, cURL and HTTP::Tiny (in that order) and uses the first one available.
+ # (So that the exclusions are not enabled here for the completion)
+ '(--lwp)--lwp[Use LWP module to download stuff]'
+ '(--wget)--wget[Use GNU Wget (if available) to download stuff]'
+ '(--curl)--curl[Use cURL (if available) to download stuff]'
+
+# Other completions
+ '*:Local directory or archive:_files -/ -g "*.(tar.gz|tgz|tar.bz2|zip)(-.)"'
+ # '*::args: _normal' # this looks for default files (any files)
+)
+_arguments -s $arguments \
+ && return 0
+
+return 1
diff --git a/plugins/deb/deb.plugin.zsh b/plugins/deb/deb.plugin.zsh
new file mode 100644
index 000000000..1b35a0646
--- /dev/null
+++ b/plugins/deb/deb.plugin.zsh
@@ -0,0 +1,13 @@
+# Aliases
+alias as="aptitude -F \"* %p -> %d \n(%v/%V)\" \
+ --no-gui --disable-columns search" # search package
+alias ad="sudo apt-get update" # update packages lists
+alias au="sudo apt-get update && \
+ sudo apt-get dselect-upgrade" # upgrade packages
+alias ai="sudo apt-get install" # install package
+alias ar="sudo apt-get remove --purge && \
+ sudo apt-get autoremove --purge" # remove package
+alias ap="apt-cache policy" # apt policy
+alias av="apt-cache show" # show package info
+alias acs="apt-cache search" # search package
+alias ac="sudo apt-get clean && sudo apt-get autoclean" # clean apt cache
diff --git a/plugins/debian/debian.plugin.zsh b/plugins/debian/debian.plugin.zsh
new file mode 100644
index 000000000..f8865a412
--- /dev/null
+++ b/plugins/debian/debian.plugin.zsh
@@ -0,0 +1,60 @@
+# https://github.com/dbbolton/
+#
+# Debian-related zsh aliases and functions for zsh
+
+
+# Aliases ###################################################################
+
+# Some self-explanatory aliases
+alias afs='apt-file search --regexp'
+alias aps='aptitude search'
+alias apsrc='apt-get source'
+alias apv='apt-cache policy'
+
+alias apdg='su -c "aptitude update && aptitude safe-upgrade"'
+alias apud='su -c "aptitude update"'
+alias apug='su -c "aptitude safe-upgrade"'
+
+# print all installed packages
+alias allpkgs='aptitude search -F "%p" --disable-columns ~i'
+
+# Install all .deb files in the current directory.
+# Warning: you will need to put the glob in single quotes if you use:
+# glob_subst
+alias di='su -c "dpkg -i ./*.deb"'
+
+# Create a basic .deb package
+alias mydeb='time dpkg-buildpackage -rfakeroot -us -uc'
+
+# Remove ALL kernel images and headers EXCEPT the one in use
+alias kclean='su -c '\''aptitude remove -P ?and(~i~nlinux-(ima|hea) ?not(~n`uname -r`))'\'' root'
+
+
+
+# Functions #################################################################
+
+# create a simple script that can be used to 'duplicate' a system
+apt-copy() {
+ print '#!/bin/sh'"\n" > apt-copy.sh
+
+ list=$(perl -m'AptPkg::Cache' -e '$c=AptPkg::Cache->new; for (keys %$c){ push @a, $_ if $c->{$_}->{'CurrentState'} eq 'Installed';} print "$_ " for sort @a;')
+
+ print 'aptitude install '"$list\n" >> apt-copy.sh
+
+ chmod +x apt-copy.sh
+}
+
+
+# Kernel-package building shortcut
+dbb-build () {
+ MAKEFLAGS='' # temporarily unset MAKEFLAGS ( '-j3' will fail )
+ appendage='-custom' # this shows up in $ (uname -r )
+ revision=$(date +"%Y%m%d") # this shows up in the .deb file name
+
+ make-kpkg clean
+
+ time fakeroot make-kpkg --append-to-version "$appendage" --revision \
+ "$revision" kernel_image kernel_headers
+}
+
+
diff --git a/plugins/dirpersist/dirpersist.plugin.zsh b/plugins/dirpersist/dirpersist.plugin.zsh
new file mode 100644
index 000000000..6a2b289a2
--- /dev/null
+++ b/plugins/dirpersist/dirpersist.plugin.zsh
@@ -0,0 +1,39 @@
+#!/bin/zsh
+#
+# Make the dirstack more persistant
+#
+# Add dirpersist to $plugins in ~/.zshrc to load
+#
+
+# $zdirstore is the file used to persist the stack
+zdirstore=~/.zdirstore
+
+dirpersistinstall () {
+ if grep 'dirpersiststore' ~/.zlogout > /dev/null; then
+ else
+ if read -q \?"Would you like to set up your .zlogout file for use with dirspersist? (y/n) "; then
+ echo "# Store dirs stack\n# See ~/.oh-my-zsh/plugins/dirspersist.plugin.zsh\ndirpersiststore" >> ~/.zlogout
+ else
+ echo "If you don't want this message to appear, remove dirspersist from \$plugins"
+ fi
+ fi
+}
+
+dirpersiststore () {
+ dirs -p | perl -e 'foreach (reverse <STDIN>) {chomp;s/([& ])/\\$1/g ;print "if [ -d $_ ]; then pushd -q $_; fi\n"}' > $zdirstore
+}
+
+dirpersistrestore () {
+ if [ -f $zdirstore ]; then
+ source $zdirstore
+ fi
+}
+
+DIRSTACKSIZE=10
+setopt autopushd pushdminus pushdsilent pushdtohome pushdignoredups
+
+dirpersistinstall
+dirpersistrestore
+
+# Make popd changes permanent without having to wait for logout
+alias popd="popd;dirpersiststore"
diff --git a/plugins/gem/_gem b/plugins/gem/_gem
new file mode 100644
index 000000000..83cba40d1
--- /dev/null
+++ b/plugins/gem/_gem
@@ -0,0 +1,64 @@
+#compdef gem
+#autoload
+
+# gem zsh completion, based on homebrew completion
+
+_gem_installed() {
+ installed_gems=(`gem list --local --no-versions`)
+}
+
+local -a _1st_arguments
+_1st_arguments=(
+ 'cert:Manage RubyGems certificates and signing settings'
+ 'check:Check installed gems'
+ 'cleanup:Clean up old versions of installed gems in the local repository'
+ 'contents:Display the contents of the installed gems'
+ 'dependency:Show the dependencies of an installed gem'
+ 'environment:Display information about the RubyGems environment'
+ 'fetch:Download a gem and place it in the current directory'
+ 'generate_index:Generates the index files for a gem server directory'
+ 'help:Provide help on the `gem` command'
+ 'install:Install a gem into the local repository'
+ 'list:Display gems whose name starts with STRING'
+ 'lock:Generate a lockdown list of gems'
+ 'mirror:Mirror a gem repository'
+ 'outdated:Display all gems that need updates'
+ 'owner:Manage gem owners on RubyGems.org.'
+ 'pristine:Restores installed gems to pristine condition from files located in the gem cache'
+ 'push:Push a gem up to RubyGems.org'
+ 'query:Query gem information in local or remote repositories'
+ 'rdoc:Generates RDoc for pre-installed gems'
+ 'search:Display all gems whose name contains STRING'
+ 'server:Documentation and gem repository HTTP server'
+ 'sources:Manage the sources and cache file RubyGems uses to search for gems'
+ 'specification:Display gem specification (in yaml)'
+ 'stale:List gems along with access times'
+ 'uninstall:Uninstall gems from the local repository'
+ 'unpack:Unpack an installed gem to the current directory'
+ 'update:Update the named gems (or all installed gems) in the local repository'
+ 'which:Find the location of a library file you can require'
+)
+
+local expl
+local -a gems installed_gems
+
+_arguments \
+ '(-v --version)'{-v,--version}'[show version]' \
+ '(-h --help)'{-h,--help}'[show help]' \
+ '*:: :->subcmds' && return 0
+
+if (( CURRENT == 1 )); then
+ _describe -t commands "gem subcommand" _1st_arguments
+ return
+fi
+
+case "$words[1]" in
+ list)
+ if [[ "$state" == forms ]]; then
+ _gem_installed
+ _requested installed_gems expl 'installed gems' compadd -a installed_gems
+ fi ;;
+ uninstall|update)
+ _gem_installed
+ _wanted installed_gems expl 'installed gems' compadd -a installed_gems ;;
+esac
diff --git a/plugins/git-flow/git-flow.plugin.zsh b/plugins/git-flow/git-flow.plugin.zsh
new file mode 100644
index 000000000..270bcbe38
--- /dev/null
+++ b/plugins/git-flow/git-flow.plugin.zsh
@@ -0,0 +1,332 @@
+#!zsh
+#
+# Installation
+# ------------
+#
+# To achieve git-flow completion nirvana:
+#
+# 0. Update your zsh's git-completion module to the newest verion.
+# From here. http://zsh.git.sourceforge.net/git/gitweb.cgi?p=zsh/zsh;a=blob_plain;f=Completion/Unix/Command/_git;hb=HEAD
+#
+# 1. Install this file. Either:
+#
+# a. Place it in your .zshrc:
+#
+# b. Or, copy it somewhere (e.g. ~/.git-flow-completion.zsh) and put the following line in
+# your .zshrc:
+#
+# source ~/.git-flow-completion.zsh
+#
+# c. Or, use this file as a oh-my-zsh plugin.
+#
+
+_git-flow ()
+{
+ local curcontext="$curcontext" state line
+ typeset -A opt_args
+
+ _arguments -C \
+ ':command:->command' \
+ '*::options:->options'
+
+ case $state in
+ (command)
+
+ local -a subcommands
+ subcommands=(
+ 'init:Initialize a new git repo with support for the branching model.'
+ 'feature:Manage your feature branches.'
+ 'release:Manage your release branches.'
+ 'hotfix:Manage your hotfix branches.'
+ 'support:Manage your support branches.'
+ 'version:Shows version information.'
+ )
+ _describe -t commands 'git flow' subcommands
+ ;;
+
+ (options)
+ case $line[1] in
+
+ (init)
+ _arguments \
+ -f'[Force setting of gitflow branches, even if already configured]'
+ ;;
+
+ (version)
+ ;;
+
+ (hotfix)
+ __git-flow-hotfix
+ ;;
+
+ (release)
+ __git-flow-release
+ ;;
+
+ (feature)
+ __git-flow-feature
+ ;;
+ esac
+ ;;
+ esac
+}
+
+__git-flow-release ()
+{
+ local curcontext="$curcontext" state line
+ typeset -A opt_args
+
+ _arguments -C \
+ ':command:->command' \
+ '*::options:->options'
+
+ case $state in
+ (command)
+
+ local -a subcommands
+ subcommands=(
+ 'start:Start a new release branch.'
+ 'finish:Finish a release branch.'
+ 'list:List all your release branches. (Alias to `git flow release`)'
+ )
+ _describe -t commands 'git flow release' subcommands
+ _arguments \
+ -v'[Verbose (more) output]'
+ ;;
+
+ (options)
+ case $line[1] in
+
+ (start)
+ _arguments \
+ -F'[Fetch from origin before performing finish]'\
+ ':version:__git_flow_version_list'
+ ;;
+
+ (finish)
+ _arguments \
+ -F'[Fetch from origin before performing finish]' \
+ -s'[Sign the release tag cryptographically]'\
+ -u'[Use the given GPG-key for the digital signature (implies -s)]'\
+ -m'[Use the given tag message]'\
+ -p'[Push to $ORIGIN after performing finish]'\
+ ':version:__git_flow_version_list'
+ ;;
+
+ *)
+ _arguments \
+ -v'[Verbose (more) output]'
+ ;;
+ esac
+ ;;
+ esac
+}
+
+__git-flow-hotfix ()
+{
+ local curcontext="$curcontext" state line
+ typeset -A opt_args
+
+ _arguments -C \
+ ':command:->command' \
+ '*::options:->options'
+
+ case $state in
+ (command)
+
+ local -a subcommands
+ subcommands=(
+ 'start:Start a new hotfix branch.'
+ 'finish:Finish a hotfix branch.'
+ 'list:List all your hotfix branches. (Alias to `git flow hotfix`)'
+ )
+ _describe -t commands 'git flow hotfix' subcommands
+ _arguments \
+ -v'[Verbose (more) output]'
+ ;;
+
+ (options)
+ case $line[1] in
+
+ (start)
+ _arguments \
+ -F'[Fetch from origin before performing finish]'\
+ ':hotfix:__git_flow_version_list'\
+ ':branch-name:__git_branch_names'
+ ;;
+
+ (finish)
+ _arguments \
+ -F'[Fetch from origin before performing finish]' \
+ -s'[Sign the release tag cryptographically]'\
+ -u'[Use the given GPG-key for the digital signature (implies -s)]'\
+ -m'[Use the given tag message]'\
+ -p'[Push to $ORIGIN after performing finish]'\
+ ':hotfix:__git_flow_hotfix_list'
+ ;;
+
+ *)
+ _arguments \
+ -v'[Verbose (more) output]'
+ ;;
+ esac
+ ;;
+ esac
+}
+
+__git-flow-feature ()
+{
+ local curcontext="$curcontext" state line
+ typeset -A opt_args
+
+ _arguments -C \
+ ':command:->command' \
+ '*::options:->options'
+
+ case $state in
+ (command)
+
+ local -a subcommands
+ subcommands=(
+ 'start:Start a new feature branch.'
+ 'finish:Finish a feature branch.'
+ 'list:List all your feature branches. (Alias to `git flow feature`)'
+ 'publish: public'
+ 'track: track'
+ 'diff: diff'
+ 'rebase: rebase'
+ 'checkout: checkout'
+ 'pull: pull'
+ )
+ _describe -t commands 'git flow feature' subcommands
+ _arguments \
+ -v'[Verbose (more) output]'
+ ;;
+
+ (options)
+ case $line[1] in
+
+ (start)
+ _arguments \
+ -F'[Fetch from origin before performing finish]'\
+ ':feature:__git_flow_feature_list'\
+ ':branch-name:__git_branch_names'
+ ;;
+
+ (finish)
+ _arguments \
+ -F'[Fetch from origin before performing finish]' \
+ -r'[Rebase instead of merge]'\
+ ':feature:__git_flow_feature_list'
+ ;;
+
+ (publish)
+ _arguments \
+ ':feature:__git_flow_feature_list'\
+ ;;
+
+ (track)
+ _arguments \
+ ':feature:__git_flow_feature_list'\
+ ;;
+
+ (diff)
+ _arguments \
+ ':branch:__git_branch_names'\
+ ;;
+
+ (rebase)
+ _arguments \
+ -i'[Do an interactive rebase]' \
+ ':branch:__git_branch_names'
+ ;;
+
+ (checkout)
+ _arguments \
+ ':branch:__git_flow_feature_list'\
+ ;;
+
+ (pull)
+ _arguments \
+ ':remote:__git_remotes'\
+ ':branch:__git_branch_names'
+ ;;
+
+ *)
+ _arguments \
+ -v'[Verbose (more) output]'
+ ;;
+ esac
+ ;;
+ esac
+}
+
+__git_flow_version_list ()
+{
+ local expl
+ declare -a versions
+
+ versions=(${${(f)"$(_call_program versions git flow release list 2> /dev/null | tr -d ' |*')"}})
+ __git_command_successful || return
+
+ _wanted versions expl 'version' compadd $versions
+}
+
+__git_flow_feature_list ()
+{
+ local expl
+ declare -a features
+
+ features=(${${(f)"$(_call_program features git flow feature list 2> /dev/null | tr -d ' |*')"}})
+ __git_command_successful || return
+
+ _wanted features expl 'feature' compadd $features
+}
+
+__git_remotes () {
+ local expl gitdir remotes
+
+ gitdir=$(_call_program gitdir git rev-parse --git-dir 2>/dev/null)
+ __git_command_successful || return
+
+ remotes=(${${(f)"$(_call_program remotes git config --get-regexp '"^remote\..*\.url$"')"}//#(#b)remote.(*).url */$match[1]})
+ __git_command_successful || return
+
+ # TODO: Should combine the two instead of either or.
+ if (( $#remotes > 0 )); then
+ _wanted remotes expl remote compadd $* - $remotes
+ else
+ _wanted remotes expl remote _files $* - -W "($gitdir/remotes)" -g "$gitdir/remotes/*"
+ fi
+}
+
+__git_flow_hotfix_list ()
+{
+ local expl
+ declare -a hotfixes
+
+ hotfixes=(${${(f)"$(_call_program hotfixes git flow hotfix list 2> /dev/null | tr -d ' |*')"}})
+ __git_command_successful || return
+
+ _wanted hotfixes expl 'hotfix' compadd $hotfixes
+}
+
+__git_branch_names () {
+ local expl
+ declare -a branch_names
+
+ branch_names=(${${(f)"$(_call_program branchrefs git for-each-ref --format='"%(refname)"' refs/heads 2>/dev/null)"}#refs/heads/})
+ __git_command_successful || return
+
+ _wanted branch-names expl branch-name compadd $* - $branch_names
+}
+
+__git_command_successful () {
+ if (( ${#pipestatus:#0} > 0 )); then
+ _message 'not a git repository'
+ return 1
+ fi
+ return 0
+}
+
+zstyle ':completion:*:*:git:*' user-commands flow:'description for foo' \ No newline at end of file
diff --git a/plugins/git.plugin.zsh b/plugins/git/git.plugin.zsh
index 655eaf728..bc340e86b 100644
--- a/plugins/git.plugin.zsh
+++ b/plugins/git/git.plugin.zsh
@@ -1,21 +1,36 @@
# Aliases
alias g='git'
+compdef g=git
alias gst='git status'
+compdef _git gst=git-status
alias gl='git pull'
+compdef _git gl=git-pull
alias gup='git fetch && git rebase'
+compdef _git gup=git-fetch
alias gp='git push'
-alias gd='git diff | mate'
-alias gdv='git diff -w "$@" | vim -R -'
+compdef _git gp=git-push
+gdv() { git-diff -w "$@" | view - }
+compdef _git gdv=git-diff
alias gc='git commit -v'
+compdef _git gc=git-commit
alias gca='git commit -v -a'
+compdef _git gca=git-commit
+alias gco='git checkout'
+compdef _git gco=git-checkout
alias gb='git branch'
+compdef _git gb=git-branch
alias gba='git branch -a'
+compdef _git gba=git-branch
alias gcount='git shortlog -sn'
+compdef gcount=git
alias gcp='git cherry-pick'
-
+compdef _git gcp=git-cherry-pick
+alias glg='git log --stat --max-count=5'
+compdef _git glg=git-log
# Git and svn mix
alias git-svn-dcommit-push='git svn dcommit && git push github master:svntrunk'
+compdef git-svn-dcommit-push=git
#
# Will return the current branch name
@@ -26,7 +41,10 @@ function current_branch() {
echo ${ref#refs/heads/}
}
-# these aliases take advangate of the previous function
+# these aliases take advantage of the previous function
alias ggpull='git pull origin $(current_branch)'
+compdef ggpull=git
alias ggpush='git push origin $(current_branch)'
-alias ggpnp='git pull origin $(current_branch) && git push origin $(current_branch)' \ No newline at end of file
+compdef ggpush=git
+alias ggpnp='git pull origin $(current_branch) && git push origin $(current_branch)'
+compdef ggpnp=git
diff --git a/plugins/github/_github b/plugins/github/_github
new file mode 100644
index 000000000..83e1713c7
--- /dev/null
+++ b/plugins/github/_github
@@ -0,0 +1,40 @@
+#compdef github
+#autoload
+
+# in order to make this work, you will need to have the github gem installed
+# http://github.com/defunkt/github-gem
+
+# github zsh completion, based on homebrew completion
+
+local -a _1st_arguments
+_1st_arguments=(
+ 'browse:Open this repo in a web browser'
+ 'clone:Clone a repo'
+ 'config:Automatically set configuration info, or pass args to specify'
+ 'create-from-local:Create a new GitHub repository from the current local repository'
+ 'create:Create a new empty GitHub repository'
+ 'fetch:Fetch from a remote to a local branch'
+ 'fetch_all:Fetch all refs from a user'
+ 'fork:Forks a GitHub repository'
+ 'home:Open this repos master branch in a web browser'
+ 'ignore:Ignore a SHA from github network commits'
+ 'info:Info about this project'
+ 'issues:Project issues tools'
+ 'network:Project network tools - sub-commands : web [user], list, fetch, commits'
+ 'open:Open the given user/project in a web browser'
+ 'pull-request:Generate the text for a pull request'
+ 'pull:Pull from a remote'
+ 'search:Search GitHub for the given repository name'
+ 'track:Track another users repository'
+)
+
+local expl
+local -a pkgs installed_pkgs
+
+_arguments \
+ '*:: :->subcmds' && return 0
+
+if (( CURRENT == 1 )); then
+ _describe -t commands "github subcommand" _1st_arguments
+ return
+fi
diff --git a/plugins/github/github.plugin.zsh b/plugins/github/github.plugin.zsh
new file mode 100644
index 000000000..df7053ba7
--- /dev/null
+++ b/plugins/github/github.plugin.zsh
@@ -0,0 +1,7 @@
+# hub alias from defunkt
+# https://github.com/defunkt/hub
+if [ "$commands[(I)hub]" ]; then
+ # eval `hub alias -s zsh`
+ function git(){hub "$@"}
+fi
+
diff --git a/plugins/lein/lein.plugin.zsh b/plugins/lein/lein.plugin.zsh
new file mode 100644
index 000000000..19af3556a
--- /dev/null
+++ b/plugins/lein/lein.plugin.zsh
@@ -0,0 +1,27 @@
+function _lein_commands() {
+ local ret=1 state
+ _arguments ':subcommand:->subcommand' && ret=0
+
+ case $state in
+ subcommand)
+ subcommands=(
+ "clean:remove compiled files and dependencies from project"
+ "compile:ahead-of-time compile the project"
+ "deps:download and install all dependencies"
+ "help:display a list of tasks or help for a given task"
+ "install:install the project and its dependencies in your local repository"
+ "jar:create a jar file containing the compiled .class files"
+ "new:create a new project skeleton"
+ "pom:write a pom.xml file to disk for maven interop"
+ "test:run the project's tests"
+ "uberjar:Create a jar including the contents of each of deps"
+ "upgrade:upgrade leiningen to the latest stable release"
+ "version:print leiningen's version"
+ )
+ _describe -t subcommands 'leiningen subcommands' subcommands && ret=0
+ esac
+
+ return ret
+}
+
+compdef _lein_commands lein
diff --git a/plugins/lighthouse.plugin.zsh b/plugins/lighthouse/lighthouse.plugin.zsh
index 4eb06a997..7661c6add 100644
--- a/plugins/lighthouse.plugin.zsh
+++ b/plugins/lighthouse/lighthouse.plugin.zsh
@@ -4,7 +4,7 @@
# Example usage: http://screencast.com/t/ZDgwNDUwNT
open_lighthouse_ticket () {
if [ ! -f .lighthouse-url ]; then
- echo "There is no .lighthouse file in the current directory..."
+ echo "There is no .lighthouse-url file in the current directory..."
return 0;
else
lighthouse_url=$(cat .lighthouse-url);
@@ -13,4 +13,4 @@ open_lighthouse_ticket () {
fi
}
-alias lho='open_lighthouse_ticket' \ No newline at end of file
+alias lho='open_lighthouse_ticket'
diff --git a/plugins/lol/lol.plugin.zsh b/plugins/lol/lol.plugin.zsh
new file mode 100644
index 000000000..a7153bb57
--- /dev/null
+++ b/plugins/lol/lol.plugin.zsh
@@ -0,0 +1,26 @@
+# LOL!!1
+# Source: http://aur.archlinux.org/packages/lolbash/lolbash/lolbash.sh
+
+alias wtf='dmesg'
+alias onoz='cat /var/log/errors.log'
+alias rtfm='man'
+
+alias visible='echo'
+alias invisible='cat'
+alias moar='more'
+
+alias icanhas='mkdir'
+alias donotwant='rm'
+alias dowant='cp'
+alias gtfo='mv'
+
+alias hai='cd'
+alias plz='pwd'
+
+alias inur='locate'
+
+alias nomz='ps -aux'
+alias nomnom='killall'
+
+alias cya='reboot'
+alias kthxbai='halt'
diff --git a/plugins/macports/_port b/plugins/macports/_port
new file mode 100644
index 000000000..06d7fb426
--- /dev/null
+++ b/plugins/macports/_port
@@ -0,0 +1,89 @@
+#compdef port
+
+local subcmds
+
+# we cache the list of ports
+# we shall use some cache policy to avoid problems with new ports
+if (( ! $+portlist )); then
+ portlist=($(port echo all; echo "all current active inactive installed uninstalled outdated"))
+fi
+
+subcmds=(
+'activate'
+'archive'
+'build'
+'cat'
+'clean'
+'configure'
+'contents'
+'deactivate'
+'dependents'
+'deps'
+'destroot'
+'dir'
+'distcheck'
+'distclean'
+'dmg'
+'echo'
+'edit'
+'extract'
+'fetch'
+'file'
+'help'
+'info'
+'install'
+'installed'
+'list'
+'livecheck'
+'location'
+'mpkg'
+'outdated'
+'patch'
+'pkg'
+'provides'
+'rpmpackage'
+'search'
+'selfupdate'
+'sync'
+'test'
+'unarchive'
+'uninstall'
+'upgrade'
+'variants'
+'version'
+)
+
+_arguments -C \
+'-v[verbose mode (generate verbose messages)]' \
+'-d[debug mode (generate debugging messages)]' \
+'-q[quiet mode (suppress messages)]' \
+'-D[specify portdir]' \
+'-k[keep mode (do not autoclean after install)]' \
+'-n[dont follow dependencies in upgrade (only for upgrading)]' \
+'-a[upgrade all installed ports (only for upgrading)]' \
+'-u[uninstall non-active ports when upgrading and uninstalling]' \
+'-f[force mode (ignore state file)]' \
+'-s[source-only mode]' \
+'-b[binary-only mode]' \
+'-o[honor state files older than Portfile]' \
+'*::command:->command' \
+&& return 0
+
+case $state in
+ command)
+ if ((CURRENT == 1)); then
+ state=subcommands
+ else
+ state=portname
+ fi
+ ;;
+esac
+
+case $state in
+ subcommands)
+ _describe -t commands 'port commands' subcmds
+ ;;
+ portname)
+ _describe -t commands 'available ports' portlist
+ ;;
+esac
diff --git a/plugins/macports/macports.plugin.zsh b/plugins/macports/macports.plugin.zsh
new file mode 100644
index 000000000..277352e32
--- /dev/null
+++ b/plugins/macports/macports.plugin.zsh
@@ -0,0 +1,8 @@
+#Aliases
+alias pc="sudo port clean --all installed"
+alias pi="sudo port install $1"
+alias psu="sudo port selfupdate"
+alias puni="sudo port uninstall inactive"
+alias puo="sudo port upgrade outdated"
+alias pup="psu && puo"
+
diff --git a/plugins/mysql-macports.plugin.zsh b/plugins/mysql-macports.plugin.zsh
deleted file mode 100644
index 63b881c9f..000000000
--- a/plugins/mysql-macports.plugin.zsh
+++ /dev/null
@@ -1,6 +0,0 @@
-# commands to control local mysql-server installation
-# paths are for osx installtion via macports
-
-alias mysqlstart='sudo /opt/local/bin/mysqld_safe5'
-alias mysqlstop='/opt/local/bin/mysqladmin5 -u root -p shutdown'
-alias mysqlstatus='mysqladmin5 -u root -p ping' \ No newline at end of file
diff --git a/plugins/mysql-macports/mysql-macports.plugin.zsh b/plugins/mysql-macports/mysql-macports.plugin.zsh
new file mode 100644
index 000000000..c39563fe4
--- /dev/null
+++ b/plugins/mysql-macports/mysql-macports.plugin.zsh
@@ -0,0 +1,8 @@
+# commands to control local mysql-server installation
+# paths are for osx installation via macports
+
+alias mysqlstart='sudo /opt/local/share/mysql5/mysql/mysql.server start'
+alias mysqlstop='sudo /opt/local/share/mysql5/mysql/mysql.server stop'
+alias mysqlrestart='sudo /opt/local/share/mysql5/mysql/mysql.server restart'
+
+alias mysqlstatus='mysqladmin5 -u root -p ping'
diff --git a/plugins/npm/_npm b/plugins/npm/_npm
new file mode 100644
index 000000000..24b536188
--- /dev/null
+++ b/plugins/npm/_npm
@@ -0,0 +1,19 @@
+#compdef npm
+
+# Node Package Manager 0.3.15 completion, letting npm do all the completion work
+
+_npm() {
+ compadd -- $(_npm_complete $words)
+}
+
+# We want to show all errors of any substance, but never the "npm (not )ok" one.
+# (Also doesn't consider "ERR! no match found" worth breaking the terminal for.)
+_npm_complete() {
+ local ask_npm
+ ask_npm=(npm completion --color false --loglevel error -- $@)
+ { _call_program npm $ask_npm 2>&1 >&3 \
+ | egrep -v '^(npm (not |)ok|ERR! no match found)$' >&2; \
+ } 3>&1
+}
+
+_npm "$@"
diff --git a/plugins/osx.plugin.zsh b/plugins/osx.plugin.zsh
deleted file mode 100644
index fce88c796..000000000
--- a/plugins/osx.plugin.zsh
+++ /dev/null
@@ -1,11 +0,0 @@
-function tab() {
- osascript 2>/dev/null <<EOF
- tell application "System Events"
- tell process "Terminal" to keystroke "t" using command down
- end
- tell application "Terminal"
- activate
- do script with command "cd \"$PWD\"; $*" in window 1
- end tell
-EOF
-} \ No newline at end of file
diff --git a/plugins/osx/osx.plugin.zsh b/plugins/osx/osx.plugin.zsh
new file mode 100644
index 000000000..81eed5e92
--- /dev/null
+++ b/plugins/osx/osx.plugin.zsh
@@ -0,0 +1,57 @@
+function savepath() {
+ pwd > ~/.current_path~
+}
+
+function tab() {
+savepath
+osascript >/dev/null <<EOF
+on do_submenu(app_name, menu_name, menu_item, submenu_item)
+ -- bring the target application to the front
+ tell application app_name
+ activate
+ end tell
+ tell application "System Events"
+ tell process app_name
+ tell menu bar 1
+ tell menu bar item menu_name
+ tell menu menu_name
+ tell menu item menu_item
+ tell menu menu_item
+ click menu item submenu_item
+ end tell
+ end tell
+ end tell
+ end tell
+ end tell
+ end tell
+ end tell
+end do_submenu
+
+do_submenu("Terminal", "Shell", "New Tab", 1)
+EOF
+}
+
+function itab() {
+savepath
+osascript >/dev/null <<EOF
+on do_submenu(app_name, menu_name, menu_item)
+ -- bring the target application to the front
+ tell application app_name
+ activate
+ end tell
+ tell application "System Events"
+ tell process app_name
+ tell menu bar 1
+ tell menu bar item menu_name
+ tell menu menu_name
+ click menu item menu_item
+ end tell
+ end tell
+ end tell
+ end tell
+ end tell
+end do_submenu
+
+do_submenu("iTerm", "Shell", "New Tab")
+EOF
+}
diff --git a/plugins/perl/perl.plugin.zsh b/plugins/perl/perl.plugin.zsh
new file mode 100644
index 000000000..f94c4195d
--- /dev/null
+++ b/plugins/perl/perl.plugin.zsh
@@ -0,0 +1,62 @@
+# https://github.com/dbbolton
+#
+# Below are some useful Perl-related aliases/functions that I use with zsh.
+
+
+# Aliases ###################################################################
+
+# perlbrew ########
+alias pbi='perlbrew install'
+alias pbl='perlbrew list'
+alias pbo='perlbrew off'
+alias pbs='perlbrew switch'
+alias pbu='perlbrew use'
+
+# Perl ############
+
+# perldoc`
+alias pd='perldoc'
+
+# use perl like awk/sed
+alias ple='perl -wlne'
+
+# show the latest stable release of Perl
+alias latest-perl='curl -s http://www.perl.org/get.html | perl -wlne '\''if (/perl\-([\d\.]+)\.tar\.gz/) { print $1; exit;}'\'
+
+
+
+# Functions #################################################################
+
+# newpl - creates a basic Perl script file and opens it with $EDITOR
+newpl () {
+ # set $EDITOR to 'vim' if it is undefined
+ [[ -z $EDITOR ]] && EDITOR=vim
+
+ # if the file exists, just open it
+ [[ -e $1 ]] && print "$1 exists; not modifying.\n" && $EDITOR $1
+
+ # if it doesn't, make it, and open it
+ [[ ! -e $1 ]] && print '#!/usr/bin/perl'"\n"'use strict;'"\n"'use warnings;'\
+ "\n\n" > $1 && $EDITOR $1
+}
+
+
+# pgs - Perl Global Substitution
+# find pattern = 1st arg
+# replace pattern = 2nd arg
+# filename = 3rd arg
+pgs() { # [find] [replace] [filename]
+ perl -i.orig -pe 's/'"$1"'/'"$2"'/g' "$3"
+}
+
+
+# Perl grep, because 'grep -P' is terrible. Lets you work with pipes or files.
+prep() { # [pattern] [filename unless STDOUT]
+ perl -nle 'print if /'"$1"'/;' $2
+}
+
+# say - append a newline to 'print'
+say() {
+ print "$1\n"
+}
+
diff --git a/plugins/phing/phing.plugin.zsh b/plugins/phing/phing.plugin.zsh
new file mode 100644
index 000000000..80e334629
--- /dev/null
+++ b/plugins/phing/phing.plugin.zsh
@@ -0,0 +1,20 @@
+_phing_does_target_list_need_generating () {
+ if [ ! -f .phing_targets ]; then return 0;
+ else
+ accurate=$(stat -f%m .phing_targets)
+ changed=$(stat -f%m build.xml)
+ return $(expr $accurate '>=' $changed)
+ fi
+}
+
+_phing () {
+ if [ -f build.xml ]; then
+ if _phing_does_target_list_need_generating; then
+ echo "\nGenerating .phing_targets..." > /dev/stderr
+ phing -l |grep -v ":" |grep -v "^$"|grep -v "\-" > .phing_targets
+ fi
+ compadd `cat .phing_targets`
+ fi
+}
+
+compdef _phing phing
diff --git a/plugins/pip/_pip b/plugins/pip/_pip
new file mode 100644
index 000000000..b58010173
--- /dev/null
+++ b/plugins/pip/_pip
@@ -0,0 +1,46 @@
+#compdef pip
+#autoload
+
+# pip zsh completion, based on homebrew completion
+
+_pip_installed() {
+ installed_pkgs=(`pip freeze`)
+}
+
+local -a _1st_arguments
+_1st_arguments=(
+ 'bundle:Create pybundles (archives containing multiple packages)'
+ 'freeze:Output all currently installed packages (exact versions) to stdout'
+ 'help:Show available commands'
+ 'install:Install packages'
+ 'search:Search PyPI'
+ 'uninstall:Uninstall packages'
+ 'unzip:Unzip individual packages'
+ 'zip:Zip individual packages'
+)
+
+local expl
+local -a pkgs installed_pkgs
+
+_arguments \
+ '(--version)--version[Show version number of program and exit]' \
+ '(-v --verbose)'{-v,--verbose}'[Give more output]' \
+ '(-q --quiet)'{-q,--quiet}'[Give less output]' \
+ '(-h --help)'{-h,--help}'[Show help]' \
+ '*:: :->subcmds' && return 0
+
+if (( CURRENT == 1 )); then
+ _describe -t commands "pip subcommand" _1st_arguments
+ return
+fi
+
+case "$words[1]" in
+ list)
+ if [[ "$state" == forms ]]; then
+ _pip_installed
+ _requested installed_pkgs expl 'installed packages' compadd -a installed_pkgs
+ fi ;;
+ uninstall)
+ _pip_installed
+ _wanted installed_pkgs expl 'installed packages' compadd -a installed_pkgs ;;
+esac
diff --git a/plugins/rails/rails.plugin.zsh b/plugins/rails/rails.plugin.zsh
new file mode 100644
index 000000000..ac8119e83
--- /dev/null
+++ b/plugins/rails/rails.plugin.zsh
@@ -0,0 +1,13 @@
+alias ss='thin --stats "/thin/stats" start'
+alias sg='ruby script/generate'
+alias sd='ruby script/destroy'
+alias sp='ruby script/plugin'
+alias ssp='ruby script/spec'
+alias rdbm='rake db:migrate'
+alias sc='ruby script/console'
+alias sd='ruby script/server --debugger'
+alias devlog='tail -f log/development.log'
+
+function remote_console() {
+ /usr/bin/env ssh $1 "( cd $2 && ruby script/console production )"
+}
diff --git a/plugins/rails3/rails3.plugin.zsh b/plugins/rails3/rails3.plugin.zsh
new file mode 100644
index 000000000..f669ef047
--- /dev/null
+++ b/plugins/rails3/rails3.plugin.zsh
@@ -0,0 +1,30 @@
+# Rails 3 aliases, backwards-compatible with Rails 2.
+
+function _bundle_command {
+ if command -v bundle && [ -e "Gemfile" ]; then
+ bundle exec $@
+ else
+ $@
+ fi
+}
+
+function _rails_command () {
+ if [ -e "script/server" ]; then
+ ruby script/$@
+ else
+ ruby script/rails $@
+ fi
+}
+
+alias rc='_rails_command console'
+alias rd='_rails_command destroy'
+alias rdb='_rails_command dbconsole'
+alias rdbm='rake db:migrate db:test:clone'
+alias rg='_rails_command generate'
+alias rp='_rails_command plugin'
+alias rs='_rails_command server'
+alias rsd='_rails_command server --debugger'
+alias devlog='tail -f log/development.log'
+
+alias rspec='_bundle_command rspec'
+alias cuke='_bundle_command cucumber'
diff --git a/plugins/redis-cli/_redis-cli b/plugins/redis-cli/_redis-cli
new file mode 100644
index 000000000..3789add18
--- /dev/null
+++ b/plugins/redis-cli/_redis-cli
@@ -0,0 +1,142 @@
+#compdef redis-cli rec
+#autoload
+
+#redis cli completion, based off homebrew completion (ref. 2011-04-14)
+
+local -a _1st_arguments
+_1st_arguments=(
+ 'append:append a value to a key'
+ 'auth:authenticate to the server'
+ 'bgrewriteeaof:asynchronously rewrite the append-only file'
+ 'bgsave:asynchornously save the dataset to disk'
+ 'blpop:remove and get the first element in a list, or block until one is available'
+ 'brpop:remove and get the last element in a list, or block until one is available'
+ 'brpoplpush:pop a value from a list, push it to another list and return it; or block until one is available'
+ # 'config get:get the value of a configuration parameter'
+ # 'config set:set a configuration parameter to the given value'
+ # 'config resetstat: reset the stats returned by INFO'
+ 'dbsize:return the number of keys in the selected database'
+ # 'debug object:get debugging information about a key'
+ # 'debug setgfault:make the server crash'
+ 'decr:decrement the integer value of a key by one'
+ 'decrby:decrement the integet value of a key by the given number'
+ 'del:delete a key'
+ 'discard:discard all commands issued after MULTI'
+ 'echo:echo the given string'
+ 'exec:execute all commands issued after a MULTI'
+ 'exists:determine if a key exists'
+ 'expire:set the time to live for a key, in seconds'
+ 'expireat:set the expiration for a key as a UNIX timestamp'
+ 'flushall:remove all keys from all databases'
+ 'flushdb:remove all keys from the current database'
+ 'get:get the value of a key'
+ 'getbit:returns the bit value at offset in the string value stored at key'
+ 'getrange:get a substring of the string stored at a key'
+ 'getset:set the string value of a key and return its old value'
+ 'hdel:delete a hash field'
+ 'hexists:determine if a hash field exists'
+ 'hget:get the value of a hash field'
+ 'hgetall:get all the fields and values in a hash'
+ 'hincrby:increment the integer value of a hash field by the given number'
+ 'hkeys:get all the fields in a hash'
+ 'hlen:get the number of fields in a hash'
+ 'hmget:get the values of all the given hash fields'
+ 'hmset:set multiple hash fields to multiple values'
+ 'hset:set the string value of a hash field'
+ 'hsetnx:set the value of a hash field, only if the field does not exist'
+ 'hvals:get all the values in a hash'
+ 'incr:increment the integer value of a key by one'
+ 'incrby:increment the integer value of a key by the given number'
+ 'info:get information and statistics about the server'
+ 'keys:find all keys matching the given pattern'
+ 'lastsave:get the UNIX timestamp of the last successful save to disk'
+ 'lindex:get an element from a list by its index'
+ 'linset:insert an element before or after another element in a list'
+ 'llen:get the length of a list'
+ 'lpop:remove and get the first element in a list'
+ 'lpush:prepend a value to a list'
+ 'lpushx:prepend a value to a list, only if the list exists'
+ 'lrange:get a range of elements from a list'
+ 'lrem:remove elements from a list'
+ 'lset:set the value of an element in a list by its index'
+ 'ltrim:trim a list to the specified range'
+ 'mget:get the values of all the given keys'
+ 'monitor:listen for all requests received by the server in real time'
+ 'move:move a key to another database'
+ 'mset:set multiple keys to muliple values'
+ 'msetnx:set multiple keys tom ultiple values, only if none of the keys exist'
+ 'multi:mark the start of a transaction block'
+ 'object:inspect the internals of Redis objects'
+ 'persist:remove the expiration from a key'
+ 'ping:ping the server'
+ 'psubscribe:listen for messages published to channels matching the given patterns'
+ 'publish:post a message to a channel'
+ 'punsubscribe:stop listening for messages posted to channels matching the given patterns'
+ 'quit:close the connection'
+ 'randomkey:return a random key from the keyspace'
+ 'rename:rename a key'
+ 'renamenx:rename a key, only if the new key does not exist'
+ 'rpop:remove and get the last element in a list'
+ 'rpoplpush:remove the last element in a list, append it to another list and return it'
+ 'rpush:append a value to a list'
+ 'rpushx:append a value to a list, only if the list exists'
+ 'sadd:add a member to a set'
+ 'save:synchronously save the dataset to disk'
+ 'scard:get the number of members in a set'
+ 'sdiff:subtract multiple sets'
+ 'sdiffstore:subtract multiple sets and store the resulting set in a key'
+ 'select:change the selected database for the current connection'
+ 'set:set the string value of a key'
+ 'setbit:sets or clears the bit at offset in the string value stored at key'
+ 'setex:set the value and expiration of a key'
+ 'setnx:set the value of a key, only if the key does not exist'
+ 'setrange:overwrite part of a string at key starting at the specified offset'
+ 'shutdown:synchronously save the dataset to disk and then shut down the server'
+ 'sinter:intersect multiple sets'
+ 'sinterstore:intersect multiple sets and store the resulting set in a key'
+ 'sismember:determine if a given value is a member of a set'
+ 'slaveof:make the server a slave of another instance, or promote it as master'
+ 'smembers:get all the members in a set'
+ 'smove:move a member from one set to another'
+ 'sort:sort the elements in a list, set or sorted set'
+ 'spop:remove and return a random member from a set'
+ 'srandmember:get a random member from a set'
+ 'srem:remove a member from a set'
+ 'strlen:get the length of the value stored in a key'
+ 'subscribe:listen for messages published to the given channels'
+ 'sunion:add multiple sets'
+ 'sunionstore:add multiple sets and store the resulting set in a key'
+ 'ttl:get the time to live for a key'
+ 'type:determine the type stored at key'
+ 'unsubscribe:stop listening for messages posted to the given channels'
+ 'unwatch:forget about all watched keys'
+ 'watch:watch the given keys to determine execution of the MULTI/EXEC block'
+ 'zadd:add a member to a sorted set, or update its score if it already exists'
+ 'zcard:get the number of members in a sorted set'
+ 'zcount:count the members in a sorted set with scores within the given values'
+ 'zincrby:increment the score of a member in a sorted set'
+ 'zinterstore:intersect multiple sorted sets and store the resulting sorted set in a new key'
+ 'zrange:return a range of members in a sorted set, by index'
+ 'zrangebyscore:return a range of members in a sorted set, by score'
+ 'zrank:determine the index of a member in a sorted set'
+ 'zrem:remove a member from a sorted set'
+ 'zremrangebyrank:remove all members in a sorted set within the given indexes'
+ 'zremrangebyscore:remove all members in a sorted set within the given scores'
+ 'zrevrange:return a range of membrs in a sorted set, by index, with scores ordered from high to low'
+ 'zrevrangebyscore:return a range of members in a sorted set, by score, with scores ordered from high to low'
+ 'zrevrank:determine the index of a member in a sorted set, with scores ordered from high to low'
+ 'zscore:get the score associated with the given member in a sorted set'
+ 'zunionstore:add multiple sorted sets and store te resulting sorted set in a new key'
+)
+
+local expl
+
+_arguments \
+ '(-v --version)'{-v,--version}'[show version]' \
+ '(-h --help)'{-h,--help}'[show help]' \
+ '*:: :->subcmds' && return 0
+
+if (( CURRENT == 1 )); then
+ _describe -t commands "redis-cli subcommand" _1st_arguments
+ return
+fi \ No newline at end of file
diff --git a/plugins/ruby.plugin.zsh b/plugins/ruby/ruby.plugin.zsh
index 82bf5d49d..82bf5d49d 100644
--- a/plugins/ruby.plugin.zsh
+++ b/plugins/ruby/ruby.plugin.zsh
diff --git a/plugins/rvm/_rvm b/plugins/rvm/_rvm
new file mode 100644
index 000000000..bba5304a0
--- /dev/null
+++ b/plugins/rvm/_rvm
@@ -0,0 +1,147 @@
+#compdef rvm
+
+local curcontext="$curcontext" state line cmds ret=1
+
+_arguments -C \
+ '(- 1 *)'{-v,--version}'[display version information]' \
+ '(-l|--level)'{-l,--level}'+[patch level to use with rvm use / install]:number' \
+ '(--prefix)--prefix[path for all rvm files (~/.rvm/), with trailing slash!]:path:_files' \
+ '(--bin)--bin[path for binaries to be placed (~/.rvm/bin/)]:path:_files' \
+ '(--source)--source[src directory to use (~/.rvm/src/)]:path:_files' \
+ '(--archives)--archives[directory for downladed files (~/.rvm/archives/)]:path:_files' \
+ '-S[Specify a script file to attempt to load and run (rubydo)]:file:_files' \
+ '-e[Execute code from the command line]:code' \
+ '(-G)-G[root gem path to use]:path:_files' \
+ '(--gems)--gems[Used to set the gems_flag, use with remove to remove gems]' \
+ '(--archive)--archive[Used to set the archive_flag, use with remove to remove archive]' \
+ '(--patch)--patch[With MRI Rubies you may specify one or more full paths to patches]' \
+ '(-C|--configure)'{-C,--configure}'=[custom configure options]' \
+ '(--nice)--nice[process niceness (for slow computers, default 0)]:number' \
+ '(--ree)--ree-options[Options passed directly to ree ./installer on the command line]:options' \
+ '(--head)--head[with update, updates rvm to git head version]' \
+ '(--rubygems)--rubygems[with update, updates rubygems for selected ruby]' \
+ '(--default)--default[with ruby select, sets a default ruby for new shells]' \
+ '(--debug)--debug[Toggle debug mode on for very verbose output]' \
+ '(--trace)--trace[Toggle trace mode on to see EVERYTHING rvm is doing]' \
+ '(--force)--force[Force install, removes old install & source before install]' \
+ '(--summary)--summary[Used with rubydo to print out a summary of the commands run]' \
+ '(--latest)--latest[with gemset --dump skips version strings for latest gem]' \
+ '(--gems)--gems[with uninstall/remove removes gems with the interpreter]' \
+ '(--docs)--docs[with install, attempt to generate ri after installation]' \
+ '(--reconfigure)--reconfigure[Force ./configure on install even if Makefile already exists]' \
+ '1: :->cmds' \
+ '*: :->args' && ret=0
+
+case $state in
+ cmds)
+ cmds=(
+ "version:show the rvm version installed in rvm_path"
+ "use:setup current shell to use a specific ruby version"
+ "reload:reload rvm source itself (useful after changing rvm source)"
+ "implode:(seppuku) removes the rvm installation completely. This means everything in $rvm_path (~/.rvm)."
+ "update:upgrades rvm to the latest version."
+ "reset:remove current and stored default & system settings."
+ "info :show the *current* environment information for current ruby"
+ "current:print the *current* ruby version and the name of any gemset being used."
+ "debug:show info plus additional information for common issues"
+ "install:install one or many ruby versions"
+ "uninstall:uninstall one or many ruby versions, leaves their sources"
+ "remove:uninstall one or many ruby versions and remove their sources"
+ "migrate:Lets you migrate all gemsets from one ruby to another."
+ "upgrade:Lets you upgrade from one version of a ruby to another, including migrating your gemsets semi-automatically."
+ "wrapper:generates a set of wrapper executables for a given ruby with the specified ruby and gemset combination. Used under the hood for passenger support and the like."
+ "cleanup:Lets you remove stale source folders / archives and other miscellaneous data associated with rvm."
+ "repair:Lets you repair parts of your environment e.g. wrappers, env files and and similar files (e.g. general maintenance)."
+ "snapshot:Lets your backup / restore an rvm installation in a lightweight manner."
+ "disk-usage:Tells you how much disk space rvm install is using."
+ "tools:Provides general information about the ruby environment, primarily useful when scripting rvm."
+ "docs:Tools to make installing ri and rdoc documentation easier."
+ "rvmrc:Tools related to managing rvmrc trust and loading."
+ "exec:runs an arbitrary command as a set operation."
+ "ruby:runs a named ruby file against specified and/or all rubies"
+ "gem:runs a gem command using selected ruby's 'gem'"
+ "rake:runs a rake task against specified and/or all rubies"
+ "tests:runs 'rake test' across selected ruby versions"
+ "specs:runs 'rake spec' across selected ruby versions"
+ "monitor:Monitor cwd for testing, run rake {spec,test} on changes."
+ "gemset:gemsets: http://rvm.beginrescueend.com/gemsets/"
+ "rubygems:Switches the installed version of rubygems for the current ruby."
+ "gemdir:display the path to the current gem directory (GEM_HOME)."
+ "srcdir:display the path to rvm source directory (may be yanked)"
+ "fetch:Performs an archive / src fetch only of the selected ruby."
+ "list:show currently installed rubies, interactive output."
+ "package:Install a dependency package {readline,iconv,zlib,openssl}"
+ "notes:Display notes, with operating system specifics."
+ "export:Temporarily set an environment variable in the current shell."
+ "unexport:Undo changes made to the environment by 'rvm export'."
+ )
+ _describe -t commands 'rvm command' cmds && ret=0
+ ;;
+ args)
+ case $line[1] in
+ (use|uninstall|remove|list)
+ _values -S , 'rubies' $(rvm list strings | sed -e 's/ruby-\([^) ]*\)-\([^) ]*\)/ruby-\1-\2 \1-\2 \1/g') default system && ret=0
+ ;;
+ (install|fetch)
+ _values -S , 'rubies' $(rvm list known_strings) && ret=0
+ ;;
+ gemset)
+ if (( CURRENT == 3 )); then
+ _values 'gemset_commands' \
+ 'import' \
+ 'export' \
+ 'create' \
+ 'copy' \
+ 'rename' \
+ 'empty' \
+ 'delete' \
+ 'name' \
+ 'dir' \
+ 'list' \
+ 'list_all' \
+ 'gemdir' \
+ 'install' \
+ 'pristine' \
+ 'clear' \
+ 'use' \
+ 'update' \
+ 'unpack' \
+ 'globalcache'
+ else
+ _values -S , 'gemsets' $(rvm gemset list | grep -v gemset 2>/dev/null)
+ fi
+ ret=0
+ ;;
+ package)
+ if (( CURRENT == 3 )); then
+ _values 'package_commands' \
+ 'install' \
+ 'uninstall'
+ else
+ _values 'packages' \
+ 'readline' \
+ 'iconv' \
+ 'curl' \
+ 'openssl' \
+ 'zlib' \
+ 'autoconf' \
+ 'ncurses' \
+ 'pkgconfig' \
+ 'gettext' \
+ 'glib' \
+ 'mono' \
+ 'llvm' \
+ 'libxml2' \
+ 'libxslt' \
+ 'libyaml'
+ fi
+ ret=0
+ ;;
+ *)
+ (( ret )) && _message 'no more arguments'
+ ;;
+ esac
+ ;;
+esac
+
+return ret
diff --git a/plugins/rvm/rvm.plugin.zsh b/plugins/rvm/rvm.plugin.zsh
new file mode 100644
index 000000000..ef934d547
--- /dev/null
+++ b/plugins/rvm/rvm.plugin.zsh
@@ -0,0 +1,3 @@
+fpath=($ZSH/plugins/rvm $fpath)
+autoload -U compinit
+compinit -i
diff --git a/plugins/ssh-agent/ssh-agent.plugin.zsh b/plugins/ssh-agent/ssh-agent.plugin.zsh
new file mode 100644
index 000000000..0efc4546f
--- /dev/null
+++ b/plugins/ssh-agent/ssh-agent.plugin.zsh
@@ -0,0 +1,23 @@
+# Based on code from Joseph M. Reagle
+# http://www.cygwin.com/ml/cygwin/2001-06/msg00537.html
+
+local SSH_ENV=$HOME/.ssh/environment-$HOST
+
+function start_agent {
+ /usr/bin/env ssh-agent | sed 's/^echo/#echo/' > ${SSH_ENV}
+ chmod 600 ${SSH_ENV}
+ . ${SSH_ENV} > /dev/null
+ /usr/bin/ssh-add;
+}
+
+# Source SSH settings, if applicable
+
+if [ -f "${SSH_ENV}" ]; then
+ . ${SSH_ENV} > /dev/null
+ ps -ef | grep ${SSH_AGENT_PID} | grep ssh-agent$ > /dev/null || {
+ start_agent;
+ }
+else
+ start_agent;
+fi
+
diff --git a/plugins/svn/svn.plugin.zsh b/plugins/svn/svn.plugin.zsh
new file mode 100644
index 000000000..45d461306
--- /dev/null
+++ b/plugins/svn/svn.plugin.zsh
@@ -0,0 +1,42 @@
+function svn_prompt_info {
+ if [[ -d .svn ]]; then
+ echo "$ZSH_PROMPT_BASE_COLOR$ZSH_THEME_SVN_PROMPT_PREFIX\
+$ZSH_THEME_REPO_NAME_COLOR$(svn_get_repo_name)$ZSH_PROMPT_BASE_COLOR$ZSH_THEME_SVN_PROMPT_SUFFIX$ZSH_PROMPT_BASE_COLOR$(svn_dirty)$ZSH_PROMPT_BASE_COLOR"
+ fi
+}
+
+
+function in_svn() {
+ if [[ -d .svn ]]; then
+ echo 1
+ fi
+}
+
+function svn_get_repo_name {
+ if [ is_svn ]; then
+ svn info | sed -n 's/Repository\ Root:\ .*\///p' | read SVN_ROOT
+
+ svn info | sed -n "s/URL:\ .*$SVN_ROOT\///p" | sed "s/\/.*$//"
+ fi
+}
+
+function svn_get_rev_nr {
+ if [ is_svn ]; then
+ svn info 2> /dev/null | sed -n s/Revision:\ //p
+ fi
+}
+
+function svn_dirty_choose {
+ if [ is_svn ]; then
+ s=$(svn status 2>/dev/null)
+ if [ $s ]; then
+ echo $1
+ else
+ echo $2
+ fi
+ fi
+}
+
+function svn_dirty {
+ svn_dirty_choose $ZSH_THEME_SVN_PROMPT_DIRTY $ZSH_THEME_SVN_PROMPT_CLEAN
+} \ No newline at end of file
diff --git a/plugins/textmate.plugin.zsh b/plugins/textmate/textmate.plugin.zsh
index 7b73e2751..7b73e2751 100644
--- a/plugins/textmate.plugin.zsh
+++ b/plugins/textmate/textmate.plugin.zsh
diff --git a/plugins/vagrant/_vagrant b/plugins/vagrant/_vagrant
new file mode 100644
index 000000000..483b29c53
--- /dev/null
+++ b/plugins/vagrant/_vagrant
@@ -0,0 +1,104 @@
+#compdef vagrant
+#autoload
+
+# vagrant zsh completion
+
+local -a _1st_arguments
+_1st_arguments=(
+ 'box:Box commands'
+ 'destroy:Destroys the vagrant environment'
+ 'halt:Halts the currently running vagrant environment'
+ 'help:[TASK] Describe available tasks or one specific task'
+ 'init:[box_name] [box_url] Initializes current folder for Vagrant usage'
+ 'package:Packages a vagrant environment for distribution'
+ 'provision:Run the provisioner'
+ 'reload:Reload the vagrant environment'
+ 'resume:Resumes a suspend vagrant environment'
+ 'ssh:SSH into the currently running environment'
+ 'ssh_config:outputs .ssh/config valid syntax for connecting to this environment via ssh.'
+ 'status:Shows the status of the current Vagrant environment.'
+ 'suspend:Suspends the currently running vagrant environment'
+ 'up:Creates the vagrant environment'
+ 'version:Prints the Vagrant version information'
+)
+
+local -a _box_arguments
+_box_arguments=(
+ 'add:NAME URI Add a box to the system'
+ 'help:COMMAND Describe subcommands or one specific subcommand'
+ 'list:Lists all installed boxes'
+ 'remove:NAME Remove a box from the system'
+ 'repackage:NAME Repackage an installed box into a `.box` file.'
+)
+
+__task_list ()
+{
+ local expl
+ declare -a tasks
+
+ tasks=(box destroy halt init package provision reload resume ssh ssh_config status suspend up version)
+
+ _wanted tasks expl 'help' compadd $tasks
+}
+
+__box_list ()
+{
+ _wanted application expl 'command' compadd $(command ls -1 $HOME/.vagrant/boxes 2>/dev/null| sed -e 's/ /\\ /g')
+}
+
+__vagrant-box ()
+{
+ local curcontext="$curcontext" state line
+ typeset -A opt_args
+
+ _arguments -C \
+ ':command:->command' \
+ '*::options:->options'
+
+ case $state in
+ (command)
+ _describe -t commands "gem subcommand" _box_arguments
+ return
+ ;;
+
+ (options)
+ case $line[1] in
+ (repackage|remove)
+ _arguments ':feature:__box_list'
+ ;;
+ esac
+ ;;
+ esac
+}
+
+
+
+
+local expl
+local -a boxes installed_boxes
+
+local curcontext="$curcontext" state line
+typeset -A opt_args
+
+_arguments -C \
+ ':command:->command' \
+ '*::options:->options'
+
+case $state in
+ (command)
+ _describe -t commands "gem subcommand" _1st_arguments
+ return
+ ;;
+
+ (options)
+ case $line[1] in
+ (help)
+ _arguments ':feature:__task_list'
+ ;;
+
+ (box)
+ __vagrant-box
+ ;;
+ esac
+ ;;
+esac
diff --git a/plugins/vi-mode/vi-mode.plugin.zsh b/plugins/vi-mode/vi-mode.plugin.zsh
new file mode 100644
index 000000000..c47ab7211
--- /dev/null
+++ b/plugins/vi-mode/vi-mode.plugin.zsh
@@ -0,0 +1,22 @@
+function zle-line-init zle-keymap-select {
+ zle reset-prompt
+}
+
+zle -N zle-line-init
+zle -N zle-keymap-select
+
+bindkey -v
+
+# if mode indicator wasn't setup by theme, define default
+if [[ "$MODE_INDICATOR" == "" ]]; then
+ MODE_INDICATOR="%{$fg_bold[red]%}<%{$fg[red]%}<<%{$reset_color%}"
+fi
+
+function vi_mode_prompt_info() {
+ echo "${${KEYMAP/vicmd/$MODE_INDICATOR}/(main|viins)/}"
+}
+
+# define right prompt, if it wasn't defined by a theme
+if [[ "$RPS1" == "" && "$RPROMPT" == "" ]]; then
+ RPS1='$(vi_mode_prompt_info)'
+fi
diff --git a/plugins/yum/yum.plugin.zsh b/plugins/yum/yum.plugin.zsh
new file mode 100644
index 000000000..d6ba7ed62
--- /dev/null
+++ b/plugins/yum/yum.plugin.zsh
@@ -0,0 +1,12 @@
+## Aliases
+
+alias ys="yum search" # search package
+alias yp="yum info" # show package info
+alias yl="yum list" # list packages
+alias yli="yum list installed" # print all installed packages
+
+alias yu="sudo yum update" # upgrate packages
+alias yi="sudo yum install" # install package
+alias yr="sudo yum remove" # remove package
+alias yrl="sudo yum remove --remove-leaves" # remove package and leaves
+alias yc="sudo yum clean all" # clean cache