Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[UPDATE] Plugin: git #2790

Merged
merged 1 commit into from Jun 5, 2015
Merged

[UPDATE] Plugin: git #2790

merged 1 commit into from Jun 5, 2015

Conversation

ncanceill
Copy link
Contributor

Update branch

Plugin: git

This branch contains updates for the git plugin.

Status

MERGED with some issues: see #3990.

This is now merged (a449d53).

There is still some stuff to do:

  • Test completion now that most compdefs were removed
  • Settle the debate on gp/gl versus gP/gp
  • Do another sweep to include any pending PRs related to this plugin
  • Update the wiki
  • Squash commits, because atomicity is out of the window already

Changelog

@kipanshi
Copy link

kipanshi commented May 8, 2014

That's great!

@@ -13,7 +13,6 @@ alias gup='git pull --rebase'
compdef _git gup=git-fetch
alias gp='git push'
compdef _git gp=git-push
alias gd='git diff'
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If you're wondering, this is removed because it's a duplicate of line 6

@mcornella
Copy link
Member

👍

1 similar comment
@Kriechi
Copy link
Contributor

Kriechi commented May 9, 2014

👍

alias gpoat='git push origin --all && git push origin --tags'
compdef _git gpoat=git-push
alias gmt='git mergetool --no-prompt'
compdef _git gm=git-mergetool
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You can also pull in this one: #2407

@mcornella
Copy link
Member

Hey @ncanceill, your PR inspired me to convert our little hunting of obsolete issues into a PR that closes them all. But first I wanted to run some tests to figure out what syntax worked.
I made a private repository to run the tests, but I thought it might be of public interest so there it goes: https://github.com/mcornella/close-issues-test/

If you're curious it's a fun thing to look at, but it basically boils down to:

  1. Closing is done if it's inside a commit message (title and/or content), or if it's in the PR body (but not in the PR title). Source
  2. Comma-separated issues don't work, you need to specify the magic word (close/fix/resolve) before each issue (this is what you've done with this one 👍). Source

I'll submit the new PR once it's ready

@ncanceill ncanceill changed the title [UPDATE] Plugin: git — fix #1500, fix #1504, fix #1546, fix #1966, fix #2546, fix #2714 [UPDATE] Plugin: git May 14, 2014
@ncanceill
Copy link
Contributor Author

Yo @mcornella,

I added #2407.

About your initiative on closing issues: now that's scientific spirit! I am sure GitHub will be happy to know that you experimented to confirm how their auto-closing system works. =D

You may be starting to know me by now, so you may know how I just happen to miss things sometimes. Indeed, that little Tip about auto-closing only working from PR body, not title, went completely unnoticed on my part. I have cleaned up the title now, thank you.

One last thing: I believe we should keep those "Update PRs" a bit specific (like this one is specific to the Git plugin), before maybe merging them all into one PR to end all PRs.

@mcornella
Copy link
Member

Another git plugin related one: #1601. Can we make this happen?

@ncanceill
Copy link
Contributor Author

Done (which shorter names). I also took the liberty to reorganize the plugin (just cut-paste in that commit, no real change).

ref=$(git symbolic-ref HEAD 2> /dev/null) || \
ref=$(git rev-parse --short HEAD 2> /dev/null) || return
echo $(git remote -v | cut -d':' -f 2)
compdef _git ggl=git-checkout
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is the best completion option I found, but I am not an expert, feel free to advise.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe git-pull would be more appropriate

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sadly, this does not work.

In the function, the remote (ie origin) is already set, and the only argument should be a branch name. However, since this is a function, not an alias, Zsh completion is unable to see that the first argument to git pull is already there. As a result, using git-pull for completion will return a choice of remote names, instead of branch names.

I found using git-checkout is a good workaround, since it does complete branch names as first argument.

Again, if someone has a better solution, let me hear it. =D

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

you have to write a real completion script for this command, I guess...

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This works:

compdef -e 'words[1]=(git pull origin); service=git; (( CURRENT+=2 )); _git' ggl

(Thanks to Mikachu on #zsh)

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

that quite a kung foo move...

@ncanceill
Copy link
Contributor Author

Hey, what do you guys think of the idea from #2494 to use gp for git pull and gP for git push, instead of respectively gl and gp? I believe it offers more consistency (of course all derivatives will be updated as well), and opens gl up for either git log or git ls-tree. Would that break much of your configs?

@ncanceill ncanceill mentioned this pull request May 24, 2014
@mcornella
Copy link
Member

I can't say anything in favor or against the alias change. I think that we will only know if it breaks people's workflow once it's merged. I don't know how we should approach such a change in a sensible manner, not in this pull request nor in any other..

@ncanceill
Copy link
Contributor Author

OK, so that's one blank vote. I agree this probably belongs in another PR — when this one is merged, and we have a testing branch (or use mine).

@mcornella
Copy link
Member

OK, so that's one blank vote.

EU elections reference? 😄

So I didn't specifically say that this belonged in another pull request, specially if no one else comments here against that change, which means that it will probably go unnoticed until it is merged and someone actually notices the alias change.

What I actually called for was some sort of automatic changelog of aliases or functions or whatever, that said "here's what's changed since your last update", so people could see that it changed.
This is more complex than it seems, and I don't expect you to go and write it in a few minutes just to include the one alias change, but rather I was throwing it out as a nice feature to have. This is similar to a previous feature request I made in #2769. You can of course add the alias.

@mcornella
Copy link
Member

Pull request #1800 and related #2684 are probably fixed, but are not marked as closed by this PR.

@ncanceill
Copy link
Contributor Author

Done.

@mcornella
Copy link
Member

#1982, alias gbnm to git branch --no-merged

alias gignored='git ls-files -v | grep "^[[:lower:]]"'
# Grep list of files in the index
alias gfg='git ls-files | grep'
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actually, I was thinking of removing the pipe, for two reasons:

  • In the current form, the alias requires an argument for grep, which does not feel right to me.
  • The output of ls-files can be useful for other commands, like less, head, and others.

@yachi what do you think?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • we can implement it as a function like gdv(), to emphasize it requires an argument, let me do another PR
  • personally i use gfg a lot to grep file names as argument to do operations, like
perl -p -i -e 's#tomato#potato#g' `gfg html$`

and

gfg pyc$ | xargs git rm -f

@ncanceill for your concern i suggest we add another alias alias glf=git ls-files

tcurvelo added a commit to tcurvelo/dotfiles that referenced this pull request Aug 12, 2015
3d5b343 Merge pull request #4122 from apjanke/venvw-treat-git-repo-as-venv-again
a207a38 Merge pull request #4099 from moncho/master
3ea3384 Merge pull request #4041 from apjanke/fix-jira-prefix-comment-merge
c968346 Merge pull request #4106 from apjanke/venvw-no-realpath
f73e642 virtualenvwrapper: treat git repos as project roots again (instead of requiring a .venv customization directory) Change error output to more conventional OMZ format, so it's clear the plugin is for oh-my-zsh and not base zsh. Use `local` variables instead of manual unsetting.
c1f1f91 virtualenvwrapper: Replace "realpath" with portable zsh-native `:A` and `:h` modifiers
0950f9c Plugin now uses completion script from docker-compose repo.
599831b Merge pull request #4058 from ncanceill/plugin-git
d24196c git plugin: fix ggl to avoid empty string see ohmyzsh/ohmyzsh#2790 (comment)
ed6645a Fix plugin/git ggpull and ggpush backward compatibility
d0670aa Fix merge conflict for jira-prefix and jira add comment
ab18795 Merge pull request #4002 from aliafshar/patch-1
f66a54f Add missing space causing parse error.
8921902 Merge pull request #3852 from sachin21/add_alias_of_bundle_clean
5d214af Merge pull request #3858 from muchweb/muchweb-patch-1-editor
7daf740 Merge pull request #3874 from diraol/patch-2
0665ece Merge pull request #3973 from moul/pr-boot2docker-update
31b351c Merge pull request #3947 from mkwmms/patch-1
0a8ca6a Merge pull request #3918 from cbazin/master
b55effd Merge pull request #3919 from delphij/history-extendedglob
34d3680 Merge pull request #3838 from forivall/hyphen-insensitive
3a57076 Merge pull request #3813 from ziegs/fix_gradle_tasks
628c1fe Merge pull request #3848 from tristola/master
058def3 Merge pull request #3798 from dnixx/vundle-update
5fba46a Merge pull request #3821 from tresni/fix_minimal
c0b283c Merge pull request #3833 from coopermaruyama/master
6a340d9 Merge pull request #3988 from UserTaken/docker_update
ea5ff03 Merge pull request #3759 from mikeokner/master
04c301b Merge pull request #3975 from wernerb/patch-1
a1e722d Merge pull request #3976 from rodrigoargumedo/patch-1
422db48 Merge pull request #3986 from evilhamsterman/master
3d2bf22 Merge pull request #4001 from ivanfoo/fixOddCharsOnMac
a778463 Merge pull request #3929 from GunfighterJ/GunfighterJ-patch-sublime3
78bbf7a Merge pull request #3809 from ncanceill/easymerge
c6460ef Fixed odd chars on mac for agnoster theme
a7e7982 Add mix-fast plugin (similar to rake-fast)
55b1a2b Update _docker
3d670c0 Adding quotes to git completion discovery path
4cc0a26 A paver (Python build and configuration utility) plugin
26c7adf Revert "Added migration notification for rails plugin"
8b95bdb Added github in web_search plugin.
83295ec last-working-dir working with spaces in dirnames
d0b690b use local options to set no_equals before sourcing bash completion script
9eaf511 Merge pull request #3990 from ncanceill/plugin-git
f1a43da git plugin: new/changed aliases gaa was brought back by popular demand — see #3535 gap was replaced with gapa — see #3682 gdc was replaced with gdca — see #3977
e55d84f Add reference to bundler plugin issue in README
763cef8 Add `leaves` command to `brew` completion
4b76b74 remove trash command from osx plugin
cf3fb87 Added README.md file for ForkLift plugin
81da076 Added README.md file for atom plugin
a2d7d36 Added README.md file
c28b226 Fix README.md for sst command
0e35bd4 Plugins: vi-mode: Add first README file
0f96e8e Plugins: archlinux - add basic README.
e592968 Plugins: archlinux - use command -v in favor of which
e0ce876 Plugins: apache2-macports - add README
3f92985 Added references to the `external themes` wiki page.
8eb31a6 git plugin: fix ggpnp when called without argument also allow multiple arguments for ggp and ggl aliases
81eec40 * Added header with help and information * Moved git information to left prompt, with   support for:     * +ZSH_THEME_GIT_PROMPT_UNTRACKED, MODIFIED,     STASHED, ADDED, UPSTREAM STATUS     (if applicable) * Removed right prompt * Refactored following Google's guidelines for   scripts [ http://goo.gl/oJSXH2 ]     * Using local variables where applicable
1f008b4 Update Mix complition upto 1.0.4
02c2b74 Update aliases in laravel5.plugin.zsh file
266894c Update taskwarrior.plugin.zsh
1a4dc0d Renamed 'ss' alias to 'sstat' (to avoid collision with /bin/ss).
69dee65 Fixed typo in README
8791d7e Update bgnotify.plugin.zsh
980528f fix typo
af4ffe5 adb: add more commands
c838b9a Update README.markdown
fb5b83d Fixed jump pluging to display the right mark name on 'mark . '
563e105 Added README for mercurial plugin
4ab4300 Add git to prerequisites
23ac32d add help link to install zsh
4c409b0 sublime: Make subl a function so it can be called from functions in other modules
e8ac8b9 Added support for detecting Sublime Text 3 on Arch Linux
6bec3c6 Update history-substring-search README
83c3316 Added the tugboat autocompletion plugin
f513999 git plugin: make b local in gg* functions because it leaked, and led to #3991
6ff96da git plugin: fix error msg in gwip alias because git rm will fail when no files were deleted
6c29041 git plugin: global var for git command due to issues like #3962 until a proper plugin-loading system is implemented
a570f4b git plugin: bring back olg gg aliases by popular demand, see #3972
557dc09 More run and create options
2fb3265 Only load url-quote-magic if it is available. Partially fixes #3614
25df9f3 Disable globbing when executing `zeus rake` aliases to enable use of square brackets without escaping
2d40cc0 Add git_prompt_behind and git_prompt_exists
f21a672 add kitchen completion plugin from @petere
70c4a27 Added a possibility to display the remote branch and the number of commits you are ahead or behind
41104f8 Fix homebrew directory in aws plugin.
1653545 Recognize comments by default.
a28dbc8 Move custon *.zsh file sourcing up so that they can load plugins and other things that come after.
8652fd6 added comment functionality
de56943 Improved the `_git_time_since_commit` function.
729b19c Remove docker insert command
45e3f62 Add README for httpie plugin
3cc3084 Fix typo in $VCS_CLEAN_COLOR in adben theme
a98501d Grep bug in Agnoster
d686f8a generate with 'pod --completion-script' /cc thx to @ajmccall
a2f782e updated the command list to the latest cocoapod version (0.33.0)
6a1b832 No input for Update Check defaults to Yes
b7d041c Add rdrs method to reset the database(s)
5770ad5 Set AWS_PROFILE and use existing RPROMPT
3a77433 Add new boot2docker options
4224c2a Merge pull request #3494 from AlexTalker/short-host
51e366e Merge pull request #3339 from Xophmeister/master
4c21557 Merge pull request #3320 from moul/pr-boot2docker
3e88e53 Merge pull request #2999 from nicorevin/master
dac07b2 Merge pull request #2736 from felipec/fc/gitfast
35c7b7b Merge pull request #1951 from Neal/extract-ipsw
cb89fcd Merge pull request #2836 from ptamarit/chsh-etc-shells
11c7baf Merge pull request #3651 from mcornella/batch-close-3
a449d53 Merge pull request #2790 from ncanceill/plugin-git
da21092 Merge pull request #3945 from nicolas-brousse/homebrew-plugin
1b625af Merge pull request #3952 from lbraun/patch-1
cffeefd Add installation instructions to README
cc63928 Round 3 of batch-closing obsolete issues
7f232f6 Respect $ZSH_CACHE_DIR when creating fasd's cache
9c75551 Merge pull request #3887 from jadb/add-cakephp3-plugin
7416018 Create new aliases for homebrew plugin
0c8cb11 Add sublime text 3 paths to check list
743be91 Don't leak extendedglob to global environment.
7b478d7 Detect the .venv in any parent directory of the current directory
6504a2d Add CakePHP3 plugin
4d0aca4 Differing upgrade and safe-upgrade
5b75cc7 Many updates to git plugin (see #2790)
9a5e1a0 Use $EDITOR
03b8c19 Fix 'chsh' by checking '/etc/shells' instead of using 'which'
d60d4f6 Add alias of bundle clean
83cf909 Added aliases for docker compose
d80918b add markdown extension to README
24552f0 Add readme and add new alias cfpc: paste+compile+copy
4512161 Update template zshrc with HYPHEN_INSENSITIVE
a315ddc typofix
8e8cdc0 Add coffeescript aliases: cf, cfc, cfp
66052e2 Add hyphen insensitivity
5c9c373 Fix minimal.zsh-theme's check for in_svn and add support for mercurial
551d68a Fixes gradle autocomplete. Regex did not include subproject tasks before.
7f0b577 Use the newest Vundle commands
8cf04ed Fix echo nothing if $SHORT_HOST doesn't exist.
f1d12c5 Add .ipsw to the extract plugin.
663d432 Minor cosmetic fix to minimal theme
95d5f2c [boot2docker plugin] Initial version
8a43d35 fix paclist() for non-english locales
5918d91 gitfast: back-port prompt fix
6a5c8fb gitfast: update to upstream v1.9.2

git-subtree-dir: .oh-my-zsh
git-subtree-split: 3d5b3430fd9da12f6e33f534e487fe9b18928ac7
danwakefield pushed a commit to danwakefield/dotfiles that referenced this pull request Aug 17, 2015
commit 192de6bcffb0294e19f4203f6f7dc1a7f3e427be
Merge: 1605d82 9caa215
Author: Robby Russell <robby@planetargon.com>
Date:   Wed Aug 12 21:16:37 2015 -0700

    Merge pull request #4238 from wubaiqing/master

    Add Baidu support to web-search plugin

commit 1605d8264c6cfb7858bac96427a99f8bd9224a21
Merge: 7c60da9 be10229
Author: Robby Russell <robby@planetargon.com>
Date:   Wed Aug 12 21:16:19 2015 -0700

    Merge pull request #4234 from mcornella/fix-fbterm-autostart

    Fix fbterm autostart

commit 7c60da9e1fd2dc806896db0a652a13a01e7a299f
Merge: 2ecb17c 17da983
Author: Robby Russell <robby@planetargon.com>
Date:   Wed Aug 12 21:15:59 2015 -0700

    Merge pull request #4233 from apjanke/apple-term-no-dupe-folder-in-title

    termsupport: avoid repeated dir in window title in Terminal.app

commit 2ecb17c272fa4c2ad8e41a09d8363cb5f59cd4d4
Merge: 20f536c 3fe3ce8
Author: Robby Russell <robby@planetargon.com>
Date:   Wed Aug 12 21:15:23 2015 -0700

    Merge pull request #4230 from mcornella/revert-custom-early-load

    Revert commit a28dbc8 ("Move custon *.zsh file sourcing up ...")

commit 20f536c06432a5cda86fc9b5bdf73fd1115cb84d
Merge: b8dbd9b ccb0ae5
Author: Robby Russell <robby@planetargon.com>
Date:   Wed Aug 12 21:14:44 2015 -0700

    Merge pull request #4228 from mcornella/fix-virtualenvwrapper-quotes

    [virtualenvwrapper] Add quotes to support folders with whitespace

commit b8dbd9bfba261cde572a9cd196dc057719862a6d
Merge: 4c1eda1 b760a10
Author: Robby Russell <robby@planetargon.com>
Date:   Wed Aug 12 21:14:27 2015 -0700

    Merge pull request #4217 from mcornella/standard-open-command

    Implement and use a standard, cross-platform open command

commit 4c1eda114d982ff5f7f7adc396f24c25d3f639d0
Merge: e3a01e5 bd893ac
Author: Robby Russell <robby@planetargon.com>
Date:   Wed Aug 12 21:13:39 2015 -0700

    Merge pull request #4216 from gkze/master

    Add terraform completion

commit e3a01e5af1bd47918e8de059af8ff619e2495acf
Merge: f6a2b97 cddfc3b
Author: Robby Russell <robby@planetargon.com>
Date:   Wed Aug 12 21:12:58 2015 -0700

    Merge pull request #4212 from NAR8789/master

    Fix chpwd clobbering in dirhistory and last-working-dir

commit f6a2b973565618272d39491d5d1a350d453cf062
Merge: 45d640b 90ea67e
Author: Robby Russell <robby@planetargon.com>
Date:   Wed Aug 12 21:12:21 2015 -0700

    Merge pull request #4203 from apjanke/title-protect-promptsubst

    termsupport: protect title() with `emulate -L zsh` for portability

commit 45d640baee42953fe1f749fad7c195823e64c67e
Merge: 84ecc66 5554207
Author: Robby Russell <robby@planetargon.com>
Date:   Wed Aug 12 21:11:33 2015 -0700

    Merge pull request #4200 from lislon/systemd-patch

    Add alias for "systemctl cat" and "systemctl edit"

commit 84ecc66cb7ce993e4551d9e9fc2e51c43387e749
Merge: 8c3d4a9 a3f0439
Author: Robby Russell <robby@planetargon.com>
Date:   Wed Aug 12 21:11:10 2015 -0700

    Merge pull request #4172 from AlexTalker/fix-typo

    Fix little typo that makes the statement useless.

commit 8c3d4a9826138363e4e24a0c720d54d7f1c5912b
Merge: 9626a36 546b99a
Author: Robby Russell <robby@planetargon.com>
Date:   Wed Aug 12 21:10:53 2015 -0700

    Merge pull request #4095 from kd35a/master

    Use 'quit all' instead of counting needed quits

commit 9626a36794ddaadcb8311e75b9664bd367e703dd
Merge: afc36e2 b3ce0f3
Author: Robby Russell <robby@planetargon.com>
Date:   Wed Aug 12 21:07:37 2015 -0700

    Merge pull request #3654 from Qix-/patch-1

    Update README.markdown

commit afc36e2710c05f031eb0b6449243881e78796de0
Merge: c45fff1 e56c898
Author: Robby Russell <robby@planetargon.com>
Date:   Wed Aug 12 21:02:46 2015 -0700

    Merge pull request #2446 from fallwith/emoji_plugin

    Emoji plugin

commit c45fff1f81f16a8c41a0576676642b084e727348
Merge: d1ea849 2449e41
Author: Robby Russell <robby@planetargon.com>
Date:   Wed Aug 12 21:01:42 2015 -0700

    Merge pull request #2367 from andrew-dwyer/n98-magerun

    New plugin for the n98-magerun Magento command line tool

commit d1ea849fddab1f9c82137bff93c87cc46be26769
Merge: 3d5b343 1232485
Author: Robby Russell <robby@planetargon.com>
Date:   Wed Aug 12 21:01:00 2015 -0700

    Merge pull request #2106 from adepasquale/master

    Added ssh-like mosh window title

commit 9caa215a2f319b4af3369fb10a4e7ee16e03281d
Author: wubaiqing <wubaiqing@vip.qq.com>
Date:   Mon Aug 10 11:41:48 2015 +0800

    Add Baidu support to web-search plugin

commit be10229659959a4ff455642e44fdaa5666e15ce3
Author: Marc Cornellà <marc.cornella@live.com>
Date:   Sun Aug 9 21:56:02 2015 +0200

    Exit only if the fbterm session closed correctly

    This prevents the previous behavior that exitted the zsh session
    even if fbterm didn't start correctly.

commit be5dcb8a59c795495318522522b92672886d4a58
Author: Marc Cornellà <marc.cornella@live.com>
Date:   Sun Aug 9 21:55:10 2015 +0200

    Check if fbterm is installed and use $TTY variable

commit 17da983442f8872e147381db215266735751abc8
Author: Andrew Janke <andrew@apjanke.net>
Date:   Sun Aug 9 15:15:12 2015 -0400

    termsupport: avoid repeated dir in window title in Terminal.app

commit 3fe3ce8bdc702d7e40917bf677b0dc34211e0a55
Author: Marc Cornellà <marc.cornella@live.com>
Date:   Sat Aug 8 01:31:02 2015 +0200

    Revert "Move custon *.zsh file sourcing up so that they can load plugins and other things that come after."

    This reverts commit a28dbc83937cbe624ec726199b4bbe7b65b2b2a0.

commit ccb0ae57207b1701c3187faf49c417fb0a902f58
Author: Marc Cornellà <marc.cornella@live.com>
Date:   Fri Aug 7 22:45:46 2015 +0200

    Add quotes to support folders with whitespace

commit b760a10cb27e5e17ad32e51ffac3374334fa4888
Author: Marc Cornellà <marc.cornella@live.com>
Date:   Wed Aug 5 01:02:17 2015 +0200

    Use standard open command in fasd and lighthouse plugins

commit d1d06b5675bebbe54f3d876eb993b6e89d8963c7
Author: Marc Cornellà <marc.cornella@live.com>
Date:   Wed Aug 5 00:32:57 2015 +0200

    Use standard open command in current plugins

    Substitutes the current duplicate logic for the standard
    and cross-platform function open_command in plugins:

      frontend-search, jira, node, web-search

commit 2d0bfcf81846ea4cb0fe2a42f3dac7f2c60e77b7
Author: Marc Cornellà <marc.cornella@live.com>
Date:   Wed Aug 5 00:27:51 2015 +0200

    Implement cross-platform open function open_command()

    For now this supports:
    - Mac OS X
    - Linux (presumably works on all versions)
    - Cygwin (Windows)

commit cddfc3b038d821ddb6d0e81410675ffaeb11cac9
Author: xiao.fan <xiao.fan@workday.com>
Date:   Tue Aug 4 15:07:47 2015 -0700

    style fixes

commit bd893ac35c3f3f58e8a9e9c46322cee75c97e591
Merge: 7f3e614 cf78586
Author: George Kontridze <george.kontridze@gmail.com>
Date:   Tue Aug 4 13:53:38 2015 -0700

    Merge pull request #1 from dlsniper/terraform

    Update to latest Terraform release 0.6.1

commit cf78586f15fc75fb82566fbc4abcdb405d61588b
Author: Florin Patan <florinpatan@gmail.com>
Date:   Tue Aug 4 21:54:01 2015 +0200

    Update to latest Terraform release 0.6.1

commit 7f3e6143ec03fd0b2558027783b375d42ceb3e4d
Author: gkze <george.kontridze@gmail.com>
Date:   Tue Aug 4 11:42:28 2015 -0700

    Add terraform completion

commit aac552362917fc729c80d191dd387016e39f97a0
Author: xiao <xiao.h.fan@gmail.com>
Date:   Mon Aug 3 22:58:29 2015 -0700

    Additional chpwd clobbering fix for dirpersist

commit 084792b829657cdf516799e43f89c0b8c22f4ab8
Author: xiao <xiao.h.fan@gmail.com>
Date:   Mon Aug 3 22:10:24 2015 -0700

    Don't clobber chpwd

commit 90ea67edf0982923f82905d87bda5b685089f219
Author: Andrew Janke <andrew@apjanke.net>
Date:   Fri Jul 31 22:23:12 2015 -0400

    termsupport: protect title() with `emulate -L zsh`

    This prevents it from malfunctioning when `setopt prompt_subst` is off.

commit 5554207279809b8232970361257ec1903f5c422d
Author: Boris Avdeev <elephant@lislon.ru>
Date:   Fri Jul 31 14:58:02 2015 +0300

    Add alias for "systemctl cat" and "systemctl edit"

commit 3d5b3430fd9da12f6e33f534e487fe9b18928ac7
Merge: a207a38 f73e642
Author: Robby Russell <robby@planetargon.com>
Date:   Wed Jul 29 08:01:33 2015 -0700

    Merge pull request #4122 from apjanke/venvw-treat-git-repo-as-venv-again

    virtualenvwrapper: Treat git repos as project roots again

commit b3ce0f36d61a1585c018d2d3602fae1d72e4b024
Author: Qix <Qix-@users.noreply.github.com>
Date:   Sun Mar 1 00:36:33 2015 -0500

    Update README.markdown

    A few spelling fixes, grammatical fixes (what's with all the ellipses?), some standardization of capitalization, and a few other tweaks.

    As well, I changed all standalone code fragments into proper code blocks.

    I also added a missing theme image!

commit a3f0439de34ac2ce083c3d9f09b4e4f5379c158c
Author: Alex Talker <alextalker@openmailbox.org>
Date:   Sun Jul 19 13:56:10 2015 +0300

    Fix little typo that makes the statement useless.

commit e56c8983539d8498bf52d70bd9fbe78f1a5d54ad
Merge: eb06484 9a39725
Author: James Bunch <fallwith@gmail.com>
Date:   Wed Jul 15 21:26:15 2015 -0700

    Merge pull request #1 from apjanke/emoji_plugin_3

    emoji: auto-generate definitions from Unicode data files

commit 9a397254dacca687bf7d204ac9d31f02ca2af242
Author: Andrew Janke <andrew@apjanke.net>
Date:   Wed Jul 15 17:16:59 2015 -0400

    Remove redundant comments from the .zsh file (since they're in README now).

commit 6d618ef70e5abfc5e18656ba8064ead0c8974386
Author: Andrew Janke <andrew@apjanke.net>
Date:   Wed Jul 15 02:56:48 2015 -0400

    emoji plugin: generate char map from Unicode UTR51 data files

    Refactor the functions and group listings to have fewer functions,
    but have them take group names as parameters.
    Pull group definitions in to a single associative array.

commit a207a38d634cc10441636bc4359cd8a18c502dea
Merge: 3ea3384 0950f9c
Author: Robby Russell <robby@planetargon.com>
Date:   Tue Jul 14 15:54:15 2015 -0700

    Merge pull request #4099 from moncho/master

    Plugin now uses completion script from docker-compose repo.

commit 3ea33841863c4f5f22a27e64ae7950d901b674af
Merge: c968346 d0670aa
Author: Robby Russell <robby@planetargon.com>
Date:   Mon Jul 6 09:33:43 2015 -0700

    Merge pull request #4041 from apjanke/fix-jira-prefix-comment-merge

    Fix jira plugin syntax error due to merge conflict

commit c968346e1793d64ea19f7e494d9fea391843823c
Merge: 599831b c1f1f91
Author: Robby Russell <robby@planetargon.com>
Date:   Mon Jul 6 09:32:29 2015 -0700

    Merge pull request #4106 from apjanke/venvw-no-realpath

    virtualenvwrapper: Remove `realpath` dependency using zsh `:A`

commit f73e642e2265601b705b6aa9d9f71878ca98644a
Author: Andrew Janke <andrew@apjanke.net>
Date:   Thu Jul 2 21:42:32 2015 -0400

    virtualenvwrapper: treat git repos as project roots again (instead of requiring a .venv customization directory)
    Change error output to more conventional OMZ format, so it's clear the plugin is for oh-my-zsh and not base zsh.
    Use `local` variables instead of manual unsetting.

commit c1f1f91daad68fa000900dc647157bbfdb2b603f
Author: Andrew Janke <andrew@apjanke.net>
Date:   Mon Jun 29 18:55:58 2015 -0400

    virtualenvwrapper: Replace "realpath" with portable zsh-native `:A` and `:h` modifiers

commit 0950f9c56da1f22bbddc45cf179a80a712908b19
Author: moncho <ramon.cr@gmail.com>
Date:   Sun Jun 28 11:16:17 2015 +0200

    Plugin now uses completion script from docker-compose repo.

commit 546b99ad4c509c6a9a4933fce2c662553f790b86
Author: Fredrik Strandin <fredrik.strandin@telavox.se>
Date:   Fri Jun 26 15:47:00 2015 +0200

    Use 'quit all' instead of counting needed quits

commit 599831b85a5fd4564ab820530e2bb45f37ca3f99
Merge: ab18795 d24196c
Author: Robby Russell <robby@planetargon.com>
Date:   Wed Jun 17 14:13:15 2015 -0700

    Merge pull request #4058 from ncanceill/plugin-git

    [Hotfix] Git plugin

commit d24196cfbdb1b1c7a7055d6dae97c4e4c3e2b4c3
Author: ncanceill <nicolas.canceill@ens-cachan.org>
Date:   Wed Jun 17 22:38:31 2015 +0200

    git plugin: fix ggl to avoid empty string
    see
    ohmyzsh/ohmyzsh#2790 (comment)

commit ed6645a2823dc6c3e0fae822186d79542682e68e
Author: Arnaud Rinquin <rinquin.arnaud@gmail.com>
Date:   Wed Jun 17 13:25:09 2015 +0100

    Fix plugin/git ggpull and ggpush backward compatibility

    Current `ggpush` is `git push origin` instead of `git push origin $(current_branch)`
    Same for `ggpull`

commit d0670aa2bd5186357961dd90c4a97c2c3842f728
Author: Andrew Janke <andrew@apjanke.net>
Date:   Mon Jun 15 16:55:25 2015 -0400

    Fix merge conflict for jira-prefix and jira add comment

commit ab18795f3cd9bd45aec60a4a4bd8ecf820eb86c4
Merge: 8921902 f66a54f
Author: Robby Russell <robby@planetargon.com>
Date:   Mon Jun 15 08:52:59 2015 -0700

    Merge pull request #4002 from aliafshar/patch-1

    Add missing space causing parse error.

commit f66a54fb7862b396e3fc09e7041ca6fee4b42a4a
Author: Ali Afshar <aafshar@gmail.com>
Date:   Sun Jun 14 22:29:11 2015 -0700

    Add missing space causing parse error.

commit 8921902388bf357ad0ab6ec198f4ba1f14b94fe4
Merge: 5d214af d60d4f6
Author: Robby Russell <robby@planetargon.com>
Date:   Sun Jun 14 22:28:33 2015 -0700

    Merge pull request #3852 from sachin21/add_alias_of_bundle_clean

    Add alias of bundle clean

commit 5d214af6d2259842c8c56b0220b99f68d26c9981
Merge: 7daf740 9a5e1a0
Author: Robby Russell <robby@planetargon.com>
Date:   Sun Jun 14 22:28:17 2015 -0700

    Merge pull request #3858 from muchweb/muchweb-patch-1-editor

    Use $EDITOR

commit 7daf7401b9301f79cc7c4f0cdb92a5e01a3c76b6
Merge: 0665ece 4d0aca4
Author: Robby Russell <robby@planetargon.com>
Date:   Sun Jun 14 22:27:59 2015 -0700

    Merge pull request #3874 from diraol/patch-2

    Debian Plugin: Differing upgrade and safe-upgrade

commit 0665ece7bd8523ef501991cda9963e9efc42ea6a
Merge: 31b351c 3a77433
Author: Robby Russell <robby@planetargon.com>
Date:   Sun Jun 14 22:27:07 2015 -0700

    Merge pull request #3973 from moul/pr-boot2docker-update

    Add new boot2docker options

commit 31b351ce4c35c472359d56d8958bfec95cb9dfda
Merge: 0a8ca6a 7f232f6
Author: Robby Russell <robby@planetargon.com>
Date:   Sun Jun 14 22:26:28 2015 -0700

    Merge pull request #3947 from mkwmms/patch-1

    Respect $ZSH_CACHE_DIR when creating fasd's cache

commit 0a8ca6adff743d38c145611377a72874d4e35414
Merge: b55effd 7b478d7
Author: Robby Russell <robby@planetargon.com>
Date:   Sun Jun 14 22:19:23 2015 -0700

    Merge pull request #3918 from cbazin/master

    Detect the .venv in any parent directory of the current directory

commit b55effd3bb3e9516c0f450a5938d07f19ad2a307
Merge: 34d3680 743be91
Author: Robby Russell <robby@planetargon.com>
Date:   Sun Jun 14 22:18:33 2015 -0700

    Merge pull request #3919 from delphij/history-extendedglob

    Don't leak extendedglob to global environment.

commit 34d3680232232c82c4e3ee850152d127b7317b3c
Merge: 3a57076 4512161
Author: Robby Russell <robby@planetargon.com>
Date:   Sun Jun 14 22:17:43 2015 -0700

    Merge pull request #3838 from forivall/hyphen-insensitive

    Add hyphen insensitivity

commit 3a57076d93700a2762fd0136877b41ef3f0e1bf5
Merge: 628c1fe 551d68a
Author: Robby Russell <robby@planetargon.com>
Date:   Sun Jun 14 22:17:24 2015 -0700

    Merge pull request #3813 from ziegs/fix_gradle_tasks

    Fixes gradle autocomplete so it includes subproject tasks

commit 628c1fe1c0ffcde0f4fb383d790af06e5157a296
Merge: 058def3 83cf909
Author: Robby Russell <robby@planetargon.com>
Date:   Sun Jun 14 22:17:09 2015 -0700

    Merge pull request #3848 from tristola/master

    Added aliases for docker compose

commit 058def3b916c01a61b279d68d4d3e10fa5bec037
Merge: 5fba46a 7f0b577
Author: Robby Russell <robby@planetargon.com>
Date:   Sun Jun 14 22:16:34 2015 -0700

    Merge pull request #3798 from dnixx/vundle-update

    Use the newest Vundle commands

commit 5fba46a8c4b0bf61d3637cbedf342cc34e950824
Merge: c0b283c 5c9c373
Author: Robby Russell <robby@planetargon.com>
Date:   Sun Jun 14 22:16:21 2015 -0700

    Merge pull request #3821 from tresni/fix_minimal

    Fix minimal.zsh-theme's check for in_svn and add support for mercurial

commit c0b283c76b70a438759fb58935e2eeb3c5bb4fea
Merge: 6a340d9 d80918b
Author: Robby Russell <robby@planetargon.com>
Date:   Sun Jun 14 22:16:04 2015 -0700

    Merge pull request #3833 from coopermaruyama/master

    coffeescript aliases for easy compiling

commit 6a340d99fd98e98178cfaab4cbb7875a8ed51e3b
Merge: ea5ff03 55b1a2b
Author: Robby Russell <robby@planetargon.com>
Date:   Sun Jun 14 22:15:40 2015 -0700

    Merge pull request #3988 from UserTaken/docker_update

    Docker run and create options

commit ea5ff03b929227fbe6e2d82017c0bf836c73d51c
Merge: 04c301b 3d670c0
Author: Robby Russell <robby@planetargon.com>
Date:   Sun Jun 14 22:14:07 2015 -0700

    Merge pull request #3759 from mikeokner/master

    Adding quotes to git completion discovery path

commit 04c301bb3af9bf728e430cae0152e524a80ecf01
Merge: a1e722d 5770ad5
Author: Robby Russell <robby@planetargon.com>
Date:   Sun Jun 14 22:10:18 2015 -0700

    Merge pull request #3975 from wernerb/patch-1

    Set AWS_PROFILE and use existing RPROMPT

commit a1e722d446518e060053b97280033c97453f9742
Merge: 422db48 b7d041c
Author: Robby Russell <robby@planetargon.com>
Date:   Sun Jun 14 22:09:46 2015 -0700

    Merge pull request #3976 from rodrigoargumedo/patch-1

    Add rdrs method to reset the database(s)

commit 422db48e37beadf31fd9081b7590f9498f7194b2
Merge: 3d2bf22 2fb3265
Author: Robby Russell <robby@planetargon.com>
Date:   Sun Jun 14 22:09:13 2015 -0700

    Merge pull request #3986 from evilhamsterman/master

    Only load url-quote-magic if it is available.

commit 3d2bf227ea2b37d351ac3846627f28151e0a4480
Merge: a778463 c6460ef
Author: Robby Russell <robby@planetargon.com>
Date:   Sun Jun 14 22:01:07 2015 -0700

    Merge pull request #4001 from ivanfoo/fixOddCharsOnMac

    Fixed odd chars on mac for agnoster theme

commit a7784636d8bd2652a4fdfc03afd019d152906ab3
Merge: 78bbf7a 0c8cb11
Author: Robby Russell <robby@planetargon.com>
Date:   Sun Jun 14 22:00:32 2015 -0700

    Merge pull request #3929 from GunfighterJ/GunfighterJ-patch-sublime3

    Add sublime text 3 paths to check list

commit 78bbf7a6e52e7aabc82f22c43c9309a5f0ff1282
Merge: 9eaf511 a7e7982
Author: Robby Russell <robby@planetargon.com>
Date:   Sun Jun 14 21:46:41 2015 -0700

    Merge pull request #3809 from ncanceill/easymerge

    Easy-to-Merge

commit c6460ef3e73f8f26f300dd8a24a83257b3b8579b
Author: ivanfoo <sanfru.ivan@gmail.com>
Date:   Mon Jun 15 00:25:22 2015 +0200

    Fixed odd chars on mac for agnoster theme

commit a7e79824f85a89cbcacbceab0277c9833dee4817
Author: Mikhail S. Pobolovets <styx.mp@gmail.com>
Date:   Mon Oct 6 09:59:20 2014 +0300

    Add mix-fast plugin (similar to rake-fast)

    Signed-off-by: Mikhail S. Pobolovets <styx.mp@gmail.com>

commit 55b1a2befe3d041b54c6aa542bd11734db31a6d5
Author: UserTaken <UserTaken@users.noreply.github.com>
Date:   Sat Jun 13 16:30:18 2015 -0700

    Update _docker

commit 3d670c0bfc00858aff67f6b4dc161f4c0a0a5aef
Author: Michael Okner <mike@mikeokner.com>
Date:   Sat Jun 13 08:59:10 2015 -0500

    Adding quotes to git completion discovery path

    Previously, spaces in the path would result in wto separate errouneous
    paths being parsed. This fixes that issue.

commit 4cc0a2638c46cebda5bc6616fa3f94c720c5686d
Author: Fräntz Miccoli <frantz.miccoli@fakedomain.com>
Date:   Mon Dec 16 00:39:26 2013 +0100

    A paver (Python build and configuration utility) plugin

commit 26c7adf1107043419582c3d7a7dbb204ff70cbcc
Author: Marc Cornellà <marc.cornella@live.com>
Date:   Fri Jun 5 18:58:13 2015 +0200

    Revert "Added migration notification for rails plugin"

    This reverts commit 1493d88, made
    to put a deprecated notice on rails3 and rails4 plugins, so that
    users would migrate to the unified rails plugin.

    It's been 1.5 years since that, so everyone should be migrated to
    the good one.

commit 8b95bdb5e0059a6007b24f2d60e1719c791c8cce
Author: Sriram Sundarraj <sriram.s.1994@gmail.com>
Date:   Sun Apr 19 22:27:03 2015 +0530

    Added github in web_search plugin.

commit 83295ec9bc0a7c16a706a76c3c1f4a6ddd91948a
Author: Christian Hoener zu Siederdissen <choener@tbi.univie.ac.at>
Date:   Sat Sep 13 20:41:47 2014 +0200

    last-working-dir working with spaces in dirnames

commit d0b690b584fa48946cfd93014aa6033ec0cc7fc3
Author: Tommy Wang <twang@joinem.com>
Date:   Wed Jun 10 10:01:38 2015 -0500

    use local options to set no_equals before sourcing bash completion script

commit 9eaf51107f15011f73b39fb727895f65797edcbc
Merge: 4224c2a f1a43da
Author: Robby Russell <robby@planetargon.com>
Date:   Fri Jun 12 08:17:36 2015 -0700

    Merge pull request #3990 from ncanceill/plugin-git

    [HotFix] Git plugin

commit f1a43daa36efdbf5c75dbc07927310b25259a114
Author: ncanceill <nicolas.canceill@ens-cachan.org>
Date:   Fri Jun 12 11:50:30 2015 +0200

    git plugin: new/changed aliases
    gaa was brought back by popular demand — see #3535
    gap was replaced with gapa — see #3682
    gdc was replaced with gdca — see #3977

commit e55d84f76e07785bec38d802b447df1fc93512f2
Author: Filip Bartuzi <filip@bartuzi.me>
Date:   Sun Oct 12 12:29:33 2014 +0200

    Add reference to bundler plugin issue in README

commit 763cef8013c90c3ea0b1edfe8c903008a7406bce
Author: Erlend Hamberg <ehamberg@gmail.com>
Date:   Mon Oct 20 18:53:57 2014 +0200

    Add `leaves` command to `brew` completion

commit 4b76b7429a820e7eda8bed6c214d81a275be30b9
Author: Vadim <moshasmail@gmail.com>
Date:   Sun Dec 28 01:54:18 2014 +0200

    remove trash command from osx plugin

commit cf3fb873ec0cc0ec428e9c05dcac998d3b3f956c
Author: wyldphyre <craigreynolds@Claire.local>
Date:   Fri Feb 27 13:38:31 2015 +0800

    Added README.md file for ForkLift plugin

commit 81da07602c8e99548ffbe4d110d40ea5873f20fe
Author: wyldphyre <craigreynolds@Claire.local>
Date:   Fri Feb 27 11:05:05 2015 +0800

    Added README.md file for atom plugin

commit a2d7d36e70abbdd1dc9b0f06e8841d4f74226195
Author: wyldphyre <craigreynolds@Claire.local>
Date:   Fri Feb 27 10:56:14 2015 +0800

    Added README.md file

commit c28b226af2dc0843ab0f05ea4abc54c4bdfd7012
Author: CkEsc <iamckesc@gmail.com>
Date:   Tue Mar 3 23:03:44 2015 +0300

    Fix README.md for sst command

commit 0e35bd4001494782fb1956acaebadf2f81c25b42
Author: Daniel Campoverde [alx741] <alx741@riseup.net>
Date:   Sun Mar 29 00:12:58 2015 -0500

    Plugins: vi-mode: Add first README file

commit 0f96e8e6c20c25ba6bc78c3df425aec61bfbaa3c
Author: KhasMek <Boushh@gmail.com>
Date:   Fri May 8 13:28:32 2015 -0600

    Plugins: archlinux - add basic README.

commit e5929680fdd4adb7b0942f16b58f99e1695ce8b8
Author: KhasMek <Boushh@gmail.com>
Date:   Fri May 8 13:18:06 2015 -0600

    Plugins: archlinux - use command -v in favor of which

      The command 'which' launches an external process that isn't
      really necessary.

commit e0ce87632d1d8ecb609bb96202a8fb3151f6be4f
Author: KhasMek <Boushh@gmail.com>
Date:   Fri May 8 15:42:26 2015 -0600

    Plugins: apache2-macports - add README

commit 3f9298514e22d6e5923f14f98b825f1688158781
Author: Dominik Ritter <dritter03@googlemail.com>
Date:   Mon May 25 01:15:37 2015 +0200

    Added references to the `external themes` wiki page.

commit 8eb31a6f9a053ea22ea88ccba3d91a4694674300
Author: ncanceill <nicolas.canceill@ens-cachan.org>
Date:   Thu Jun 11 23:34:18 2015 +0200

    git plugin: fix ggpnp when called without argument
    also allow multiple arguments for ggp and ggl aliases

commit 81eec406c8186a8f15763cf21230e0f1164942c9
Author: Michele Bologna <michele.bologna@gmail.com>
Date:   Thu May 28 16:25:49 2015 +0200

    * Added header with help and information
    * Moved git information to left prompt, with
      support for:
        * +ZSH_THEME_GIT_PROMPT_UNTRACKED, MODIFIED,
        STASHED, ADDED, UPSTREAM STATUS
        (if applicable)
    * Removed right prompt
    * Refactored following Google's guidelines for
      scripts [ http://goo.gl/oJSXH2 ]
        * Using local variables where applicable

commit 1f008b4113cd4586423c4ecc54f65f12e8a61145
Author: Mikhail S. Pobolovets <styx.mp@gmail.com>
Date:   Thu Apr 30 14:03:31 2015 +0300

    Update Mix complition upto 1.0.4

    Signed-off-by: Mikhail S. Pobolovets <styx.mp@gmail.com>

commit 02c2b74918b237f936ea51f14b38463221ec59dc
Author: Jorge González <scrub.mx@gmail.com>
Date:   Sat Jun 6 21:08:59 2015 -0400

    Update aliases in laravel5.plugin.zsh file

    Some minor changes to the aliases.
    * removed php artisan dump-autoload since is no longer a command in laravel 5
    * updated the la5routes alias to the new version of the command
    * added a la5vendor alias to publish assets from vendor packages

commit 266894c6a138eb8a248ce8aa428fcabeabd7ffa4
Author: regagain <regagainsttheregis@gmail.com>
Date:   Sun May 17 16:26:18 2015 +0200

    Update taskwarrior.plugin.zsh

    Corrected documentation to avoid confusion (see ohmyzsh/ohmyzsh#3796)

commit 1a4dc0d2db56c2abf5244f1fca975ea887eb6bbb
Author: Michele Bologna <michele.bologna@gmail.com>
Date:   Fri Sep 19 12:30:24 2014 +0200

    Renamed 'ss' alias to 'sstat' (to avoid collision with /bin/ss).

commit 69dee6538155cb604434363ba243e540a6104fe6
Author: asaph <ace@dontletgo.com>
Date:   Tue May 19 13:24:16 2015 -0700

    Fixed typo in README

commit 8791d7e09ea28335a60db7bd2f5c0d771d7910fc
Author: Paul <pavel.finkelshtein@gmail.com>
Date:   Tue Jun 9 07:35:38 2015 +0300

    Update bgnotify.plugin.zsh

    Fixed error with spaces in commands

commit 980528f9fa33780499d625bbbb8ea2cada78530d
Author: Archie <isntall@users.noreply.github.com>
Date:   Sat May 23 10:22:03 2015 -0700

    fix typo

commit af4ffe56eae27c85ed472307554fd7347966d316
Author: Luca Stefani <luca.stefani.ge1@gmail.com>
Date:   Thu May 7 13:24:33 2015 +0200

    adb: add more commands

commit c838b9a112e1569bcc5af069d8283057f7d4208a
Author: Diego Rabatone Oliveira <diraol@diraol.eng.br>
Date:   Sat May 9 17:38:34 2015 -0300

    Update README.markdown

    Updating the install instructions as proposed in: ohmyzsh/ohmyzsh#3516 (comment)

commit fb5b83d10d5b1640fbd2035d5a7419cb5b25c32a
Author: Octavian Neamtu <octavian.neamtu@annkissam.com>
Date:   Sat May 9 19:12:14 2015 -0400

    Fixed jump pluging to display the right mark name on 'mark . '

commit 563e1052c723739b25b34706a9c689b77435e5a2
Author: Oleksandr Shybystyi <oleksandr.shybystyi@gmail.com>
Date:   Mon May 4 14:04:25 2015 +0300

    Added README for mercurial plugin

commit 4ab430025c97902a28c0fa7aad45e14d0a7852e9
Author: Kevin Ndung'u <kevgathuku@users.noreply.github.com>
Date:   Sat Apr 18 15:47:08 2015 +0300

    Add git to prerequisites

    Resolves #3786

commit 23ac32d34680785c678ee64a915d11e12253d206
Author: Martin Delille <martin@phonations.com>
Date:   Mon Mar 30 11:23:00 2015 +0200

    add help link to install zsh

commit 4c409b0de918e62f9354cbc604c6ae65da611caf
Author: Paul Melnikow <paul.melnikow@bodylabs.com>
Date:   Mon Dec 29 14:48:24 2014 -0500

    sublime: Make subl a function so it can be called from functions in other modules

    Without this change, whether a function can invoke 'subl' depends on the order in which modules are loaded. With this change, the order doesn't matter.

    zsh resolves aliases at parse time not run time, which means if you invoke an alias from a function, the alias must be defined before the function.

    See http://stackoverflow.com/a/25532276/893113 which refers to an explanation of this limitation.

    For code which may be used non-interactively, the recommend workaround is to use functions instead of aliases.

commit e8ac8b9b5f82369635d719408f8b4adc5d97bcf9
Author: Jonathan Roemer <jon@roemersoftworks.com>
Date:   Fri May 1 17:44:50 2015 -0400

    Added support for detecting Sublime Text 3 on Arch Linux

commit 6bec3c6719f17898b6504a6189424bc23cc10c65
Author: Matheus Cruz Rocha <matheus.rocha89@gmail.com>
Date:   Sat May 2 12:59:18 2015 -0300

    Update history-substring-search README

    This Change remove the .zsh on the plugin activate example, cause with the .zsh at the end the plugin won't be activated

commit 83c3316cf4c4f11c15b8a9df488d629cf4bc23dc
Author: DimitriSteyaert <github@dimitri.eu>
Date:   Mon Apr 27 22:26:30 2015 +0200

    Added the tugboat autocompletion plugin

commit f513999a4dbfea3a15287368848a718543fcaf7b
Author: ncanceill <nicolas.canceill@ens-cachan.org>
Date:   Thu Jun 11 17:14:35 2015 +0200

    git plugin: make b local in gg* functions
    because it leaked, and led to #3991

commit 6ff96dab36865ab208b08a004903338bfd405eac
Author: ncanceill <nicolas.canceill@ens-cachan.org>
Date:   Thu Jun 11 16:16:12 2015 +0200

    git plugin: fix error msg in gwip alias
    because git rm will fail when no files were deleted

commit 6c29041af73fc3668f6a3256ebc7ab532a2bbba9
Author: ncanceill <nicolas.canceill@ens-cachan.org>
Date:   Thu Jun 11 15:12:28 2015 +0200

    git plugin: global var for git command
    due to issues like #3962
    until a proper plugin-loading system is implemented

commit a570f4b7f332d6a1f7b25e1d5fd9a3954e379065
Author: ncanceill <nicolas.canceill@ens-cachan.org>
Date:   Thu Jun 11 11:04:54 2015 +0200

    git plugin: bring back olg gg aliases
    by popular demand, see #3972

commit 557dc09d71e489790742ed8603e929edb48fb071
Author: UserTaken <elysian@live.com>
Date:   Thu Jun 11 00:21:45 2015 -0700

    More run and create options

commit 2fb326513a9e2cec473cff88669da890ad4ae834
Author: Dan Mills <evilhamsterman@gmail.com>
Date:   Wed Jun 10 15:49:47 2015 -0700

    Only load url-quote-magic if it is available.
    Partially fixes #3614

commit 25df9f3998359832667db206774a18cb45153a15
Author: Blake Watters <blakewatters@gmail.com>
Date:   Tue Feb 26 11:29:19 2013 -0500

    Disable globbing when executing `zeus rake` aliases to enable use of square brackets without escaping

commit 2d40cc0bb315a92368e35c15c92f955bd901c7c3
Author: Adam Lindberg <hello@alind.io>
Date:   Wed Apr 16 10:34:45 2014 +0200

    Add git_prompt_behind and git_prompt_exists

    This adds two new theme functions for git:
    * `git_prompt_behind` works in a identical fashion to `git_prompt_ahead`
      and will output a format variable (`ZSH_THEME_GIT_PROMPT_BEHIND`) if
      the branch is behind.
    * `git_prompt_remote` will output one format variable if the branch
      exists on remote (`ZSH_THEME_GIT_PROMPT_REMOTE_EXISTS`), and another
      if the branch is unpublished (`ZSH_THEME_GIT_PROMPT_REMOTE_MISSING`).

    The old `git_prompt_ahead` has been changed. Using git log is subject
    to formatting in .gitconfig, which can be overridden and will break
    this function. Relying on rev-list is much more stable.

commit f21a672fed1e1455c8341c972f3ba5a408726053
Author: Sean Escriva <sean.escriva@gmail.com>
Date:   Sat May 24 14:24:56 2014 -0400

    add kitchen completion plugin from @petere

commit 70c4a27fd6048c3213dd2f3bae21bff26005bc16
Author: leif.hanack <strug@web.de>
Date:   Wed Jun 4 00:37:33 2014 +0200

    Added a possibility to display the remote branch and the number of commits you are ahead or behind

commit 41104f8af842cd9ba441255808053a36ef4fcd6b
Author: Andrew Purcell <andrew.purcell@grandroundshealth.com>
Date:   Mon Dec 1 12:29:59 2014 -0800

    Fix homebrew directory in aws plugin.

    Sometimes the output of ``homebrew --prefix`` and ``homebrew --prefix
    awscli`` don't match, and the second is the correct call.

commit 16535452829d36f5382b176216a9ad312b2be1e5
Author: Tejas Bubane <tejas.bubane@infibeam.net>
Date:   Tue Dec 23 12:48:09 2014 +0530

    Recognize comments by default.

commit a28dbc83937cbe624ec726199b4bbe7b65b2b2a0
Author: Matthew Hager <matthew@poeticsystems.com>
Date:   Sat Feb 21 12:33:38 2015 -0600

    Move custon *.zsh file sourcing up so that they can load plugins and other things that come after.

commit 8652fd64efe7bcf950494856fd10ef1f5627a9ea
Author: David Hartmann <dh@thesilverlogic.com>
Date:   Sun Jun 22 03:10:53 2014 +0200

    added comment functionality

    added commenting functionality by appending 'm' after the issue key (regular JIRA shortcut)

commit de56943a0ee120fdc0ba9f2c3929f8bb1742e3b4
Author: Samuel Parkinson <sam.parkinson@graze.com>
Date:   Wed Jul 2 18:22:32 2014 +0100

    Improved the `_git_time_since_commit` function.

    Check for at least one commit using a `git log` limit of one.

    Improves the performance inside git repos with a large history.

commit 729b19c0852b7efe7d9c63e08b676883794b90ec
Author: Wayne <waynelkh0@gmail.com>
Date:   Sun Apr 26 03:52:00 2015 +0800

    Remove docker insert command

    Remove the docker insert command of autocomplete

commit 45e3f623cc5c80eff68449a7db66829bc08d9a18
Author: liuxiang <liuxiang921@gmail.com>
Date:   Wed Feb 25 10:45:13 2015 +0800

    Add README for httpie plugin

commit 3cc3084f5fadcd9fedb5f633e2e207e8150e9451
Author: Andrew Janke <janke@pobox.com>
Date:   Wed Mar 18 01:02:09 2015 -0400

    Fix typo in $VCS_CLEAN_COLOR in adben theme

commit a98501d2ce76152f1601aad0d2be23fcda230c0a
Author: Mark Mendoza <mendoza.mark.a@gmail.com>
Date:   Mon Apr 20 01:29:16 2015 -0700

    Grep bug in Agnoster

commit d686f8a8d0aa4ee42be6a9663c05374344e2c649
Author: Alexandre Joly <alexandre.joly@mekanics.ch>
Date:   Wed May 28 16:16:30 2014 +0200

    generate with 'pod --completion-script' /cc thx to @ajmccall

    version bumped

commit a2f782e5f3fd3d65dfb34b7f22ec68234b2774a3
Author: Alexandre Joly <alexandre.joly@mekanics.ch>
Date:   Wed May 21 09:55:26 2014 +0200

    updated the command list to the latest cocoapod version (0.33.0)

    version bumped

commit 6a1b8320fe9f087179c9ebf092bd17a782127d96
Author: HeroCC <HeroCC@users.noreply.github.com>
Date:   Mon Apr 20 11:24:05 2015 -0400

    No input for Update Check defaults to Yes

commit b7d041c627ab9e40c08a51932afe2d61e840de09
Author: Rodrigo Argumedo <rodrigo.argumedo@outlook.com>
Date:   Tue Jun 9 13:41:34 2015 -0600

    Add rdrs method to reset the database(s)

commit 5770ad51f963af7b75af03fabc691492137277ef
Author: Werner Buck <wernerbuck@gmail.com>
Date:   Tue Jun 9 16:52:40 2015 +0200

    Set AWS_PROFILE and use existing RPROMPT

commit 3a77433cea136ff9d9a383866f191f66169468c9
Author: Manfred Touron <m@42.am>
Date:   Tue Jun 9 11:29:37 2015 +0200

    Add new boot2docker options

commit 4224c2a1af2a1b99c14ef81012af321c39856cf5
Merge: 51e366e 8cf04ed
Author: Robby Russell <robby@planetargon.com>
Date:   Fri Jun 5 08:07:12 2015 -0700

    Merge pull request #3494 from AlexTalker/short-host

    Fix echo nothing if $SHORT_HOST doesn't exist.

commit 51e366e5462e6be7f7658c8285e6741531ede744
Merge: 4c21557 663d432
Author: Robby Russell <robby@planetargon.com>
Date:   Fri Jun 5 08:06:32 2015 -0700

    Merge pull request #3339 from Xophmeister/master

    Minor cosmetic fix to minimal theme

commit 4c21557862bbfa5523193f4bbb8ddbf91d88e827
Merge: 3e88e53 95d5f2c
Author: Robby Russell <robby@planetargon.com>
Date:   Fri Jun 5 08:06:11 2015 -0700

    Merge pull request #3320 from moul/pr-boot2docker

    [boot2docker plugin] Initial version

commit 3e88e53ee742159027084bfee100f97b4a2baf2d
Merge: dac07b2 8a43d35
Author: Robby Russell <robby@planetargon.com>
Date:   Fri Jun 5 08:04:59 2015 -0700

    Merge pull request #2999 from nicorevin/master

    fix paclist() for non-english locales

commit dac07b2652b10386e0b0c1ffc874c9a0a451ea10
Merge: 35c7b7b 5918d91
Author: Robby Russell <robby@planetargon.com>
Date:   Fri Jun 5 08:04:32 2015 -0700

    Merge pull request #2736 from felipec/fc/gitfast

    gitfast: update to upstream v1.9.2

commit 35c7b7bbcf45fa52f43aca7d0b52e45fdfc11931
Merge: cb89fcd f1d12c5
Author: Robby Russell <robby@planetargon.com>
Date:   Fri Jun 5 08:04:12 2015 -0700

    Merge pull request #1951 from Neal/extract-ipsw

    Add .ipsw to the extract plugin.

commit cb89fcd8d6b940d2d490c7791b2b5859672a5dc5
Merge: 11c7baf 03b8c19
Author: Robby Russell <robby@planetargon.com>
Date:   Fri Jun 5 08:03:24 2015 -0700

    Merge pull request #2836 from ptamarit/chsh-etc-shells

    Install script's chsh not working on Fedora

commit 11c7baf5784cb44f19bc6d9a24cf51d4267686f1
Merge: a449d53 cc63928
Author: Robby Russell <robby@planetargon.com>
Date:   Fri Jun 5 08:02:18 2015 -0700

    Merge pull request #3651 from mcornella/batch-close-3

    Round 3 of batch-closing obsolete issues

commit a449d53c7e15ca1bcc43952a418bdb9d370c7e21
Merge: da21092 5b75cc7
Author: Robby Russell <robby@planetargon.com>
Date:   Fri Jun 5 08:01:31 2015 -0700

    Merge pull request #2790 from ncanceill/plugin-git

    [UPDATE] Plugin: git

commit da2109211d480cd0a94b99449c984bfe084af5fd
Merge: 1b625af 7416018
Author: Robby Russell <robby@planetargon.com>
Date:   Thu Jun 4 22:17:34 2015 -0700

    Merge pull request #3945 from nicolas-brousse/homebrew-plugin

    Create new aliases for homebrew plugin

commit 1b625afd5f88ab8a486c0f5591e2f8561e9345da
Merge: 9c75551 cffeefd
Author: Robby Russell <robby@planetargon.com>
Date:   Thu Jun 4 22:16:35 2015 -0700

    Merge pull request #3952 from lbraun/patch-1

    Add installation instructions to README

commit cffeefde903149df8ef48224fedf5205cb2497c3
Author: Lucas Braun <lucas.braun@annkissam.com>
Date:   Thu Jun 4 11:00:21 2015 -0400

    Add installation instructions to README

    Update README formatting

commit cc639287d2fbb3e5b032a70b2f5fb671ee9e95ff
Author: Marc Cornellà <marc.cornella@live.com>
Date:   Sat Feb 28 13:31:54 2015 +0100

    Round 3 of batch-closing obsolete issues

commit 7f232f69fe8140a919759ea3b0811a71247f11e1
Author: william <mkwmms@users.noreply.github.com>
Date:   Tue Jun 2 14:43:38 2015 -0600

    Respect $ZSH_CACHE_DIR when creating fasd's cache

commit 9c755511f0c8e96eb893226ee43947bb3eef6666
Merge: 1400346 6504a2d
Author: Robby Russell <robby@planetargon.com>
Date:   Tue Jun 2 12:11:43 2015 -0700

    Merge pull request #3887 from jadb/add-cakephp3-plugin

    Add CakePHP3 plugin

commit 7416018d1c51ae2ff008538c98e6f9b19b752bc5
Author: Nicolas Brousse <pro@nicolas-brousse.fr>
Date:   Sun May 31 19:34:01 2015 +0200

    Create new aliases for homebrew plugin

commit 0c8cb11d44d4ed4f458907cc19a0896416590587
Author: GunfighterJ <joseph.jenniges@gmail.com>
Date:   Mon May 25 16:02:26 2015 -0500

    Add sublime text 3 paths to check list

commit 743be91b207d4617e68b04a43311438652cec63d
Author: Xin Li <delphij@FreeBSD.org>
Date:   Thu May 21 12:34:04 2015 -0700

    Don't leak extendedglob to global environment.

commit 7b478d75a3a0db466e78b6e46a0e468d64354618
Author: epelletier <enguerrand.pelletier@supinfo.com>
Date:   Thu May 21 17:34:24 2015 +0200

    Detect the .venv in any parent directory of the current directory

commit 6504a2d386570213a3a1b1e9b371622b1f74ab2f
Author: Jad Bitar <jadbitar@mac.com>
Date:   Tue May 12 13:23:05 2015 -0400

    Add CakePHP3 plugin

commit 4d0aca48dace8cc4952aeb3c266837b993133a1c
Author: Diego Rabatone Oliveira <diraol@diraol.eng.br>
Date:   Sat May 9 18:46:54 2015 -0300

    Differing upgrade and safe-upgrade

    Improving with "safe-upgrade" for aptitude and "upgrade" for apt-get

commit 2449e41248f03f4313e67294883cb928d597ad27
Author: Andrew Dwyer <andrewrdwyer@gmail.com>
Date:   Sat May 9 15:43:30 2015 +0930

    Add file completion as optional argument

commit de769058b9bb846cdbda8eadfde7ebc1bad3993d
Author: Andrew Dwyer <andrewrdwyer@gmail.com>
Date:   Sat May 9 14:33:01 2015 +0930

    Fix awk command. \s only working in gawk

commit 5b75cc7880de1931a0507800d90eb77ed659fa46
Author: ncanceill <nicolas.canceill@ens-cachan.org>
Date:   Fri Jul 12 15:26:04 2013 +0200

    Many updates to git plugin (see #2790)

commit 9a5e1a055201409ebe9e1ab97cd8c3fe52b990f5
Author: Aleks <aleks@s-ko.net>
Date:   Wed May 6 10:26:05 2015 +0100

    Use $EDITOR

commit 03b8c199e591de73de3824fc6b366138964c1ba6
Author: Pablo Tamarit <pablo.tmrt@gmail.com>
Date:   Tue May 5 19:49:19 2015 +0200

    Fix 'chsh' by checking '/etc/shells' instead of using 'which'

    fix test for chsh in install
    in case $SHELL is zsh but not the last one in /etc/shells
    fixes #3026 fixes #3779 fixes #3780

commit d60d4f68aa75cc21a0fc771020fdbd578b872d75
Author: Satoshi Ohmori <sachin21dev@gmail.com>
Date:   Tue May 5 14:27:59 2015 +0900

    Add alias of bundle clean

commit 83cf909ad621938d3dc64c1f28155e819e1b6ea5
Author: Toni Ristola <toni.ristola@gofore.com>
Date:   Mon May 4 07:47:02 2015 +0300

    Added aliases for docker compose

commit d80918bf981d5df3f192346b44c0c35636ee7b2b
Author: Cooper Maruyama <cooperm@susteen.com>
Date:   Sat May 2 07:16:27 2015 -0700

    add markdown extension to README

commit 24552f02259829428c412a88729de4cfd0b7ba8b
Author: Cooper Maruyama <cooperm@susteen.com>
Date:   Sat May 2 07:14:21 2015 -0700

    Add readme and add new alias cfpc: paste+compile+copy

commit 45121611fe00a27155aa4259c31761224d4ccef4
Author: Jordan Klassen <jordan@klassen.me.uk>
Date:   Fri May 1 15:10:45 2015 -0700

    Update template zshrc with HYPHEN_INSENSITIVE

commit a315ddc075e6a6a4b9dbdcaced0fa08349597223
Author: Cooper Maruyama <cooperm@susteen.com>
Date:   Fri May 1 01:37:55 2015 -0700

    typofix

commit 8e8cdc0502fc35844975548fa268e7ed027d00b7
Author: Cooper Maruyama <cooperm@susteen.com>
Date:   Fri May 1 01:34:20 2015 -0700

    Add coffeescript aliases: cf, cfc, cfp

    cf: compile and show output
    cfc: compile & copy
    cfp: compile from pasteboard & print

commit 66052e2d07fc4e6205bf7f14adfa12d53d9ad487
Author: Jordan Klassen <jordan@klassen.me.uk>
Date:   Wed Apr 29 15:37:39 2015 -0700

    Add hyphen insensitivity

commit 5c9c373cd7944b514c22c292333700bea0408203
Author: Brian Hartvigsen <brian.andrew@brianandjenny.com>
Date:   Tue Apr 28 00:05:11 2015 -0700

    Fix minimal.zsh-theme's check for in_svn and add support for mercurial

commit 551d68ad11c65ece0ea2af07a58fe971795bb9e6
Author: Matthew Ziegelbaum <mziegelbaum@gmail.com>
Date:   Sat Apr 25 16:08:26 2015 -0400

    Fixes gradle autocomplete. Regex did not include subproject tasks before.

commit 7f0b577b142fad91ad04f03112498304c9f27dbb
Author: dnixx <nicoqh@gmail.com>
Date:   Tue Apr 21 21:34:26 2015 +0200

    Use the newest Vundle commands

    Vundle changed the command names during an interface update. The old commands will be deprecated. https://github.com/gmarik/Vundle.vim/blob/v0.10.2/doc/vundle.txt#L372-L396

commit 8cf04ed3d7d5552bc2242a5987d46f6faf0fe2dc
Author: Alex Talker <alextalker@openmailbox.org>
Date:   Thu Jan 15 04:13:40 2015 +0300

    Fix echo nothing if $SHORT_HOST doesn't exist.

commit f1d12c598b936a54fa1fb5b9a2b8abc4b58bbc85
Author: Neal <neal@ineal.me>
Date:   Fri Jul 5 08:48:46 2013 -0500

    Add .ipsw to the extract plugin.

commit 663d43241cd890c2fa78040a612c6d424674c5f9
Author: Christopher Harrison <github@acc.xoph.co>
Date:   Mon Nov 24 09:56:47 2014 +0000

    Minor cosmetic fix to minimal theme

    Set the closing square-brace's FG colour to white, to match the opening brace, when the repo directory is dirty.

commit 95d5f2c641d698b479dc8817ed1a85dcbc965fb6
Author: Manfred Touron <m@42.am>
Date:   Thu Nov 13 18:59:04 2014 +0100

    [boot2docker plugin] Initial version

commit 8a43d358c1d433c32fd940d3ff19cfa2f3fcf20c
Author: Nico Revin <whois@nicorevin.ru>
Date:   Fri Aug 1 23:32:38 2014 +0400

    fix paclist() for non-english locales

commit eb06484d4f3124a4fa922c25540fa80885fc35b5
Author: fallwith <fallwith@gmail.com>
Date:   Sat Jan 18 20:26:21 2014 -0800

    added emoji plugin to make it easy to display emoji characters in the terminal

commit 12324856c6645c2e71c4dfcf5ef12313c989b387
Author: Andrea De Pasquale <andrea@de-pasquale.name>
Date:   Tue Sep 24 11:11:35 2013 +0200

    Added ssh-like mosh window title

    Display the hostname when running Mosh (http://mosh.mit.edu/).
    Same thing as displaying "hostname" when running "ssh hostname".

commit 5918d9100b294beb490cbd5f1f15fe2b064d9e62
Author: Felipe Contreras <felipe.contreras@gmail.com>
Date:   Mon Apr 21 21:13:06 2014 -0500

    gitfast: back-port prompt fix

    Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>

commit 6a5c8fb81b369566ed0f5e408dab7a7213354ade
Author: Felipe Contreras <felipe.contreras@gmail.com>
Date:   Mon Apr 21 21:11:49 2014 -0500

    gitfast: update to upstream v1.9.2

    Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>

commit 00b2cc653421c1465f7596f22c19d21f42aa0396
Author: Andrew Dwyer <andrewrdwyer@gmail.com>
Date:   Sat Dec 21 11:17:05 2013 +1030

    New plugin for the n98-magerun Magento command line tool
kirb pushed a commit to kirb/oh-my-zsh that referenced this pull request Aug 23, 2015
kirb pushed a commit to kirb/oh-my-zsh that referenced this pull request Aug 23, 2015
allenlsy pushed a commit to allenlsy/.oh-my-zsh that referenced this pull request Aug 31, 2015
* 'master' of https://github.com/robbyrussell/oh-my-zsh: (106 commits)
  virtualenvwrapper: treat git repos as project roots again (instead of requiring a .venv customization directory) Change error output to more conventional OMZ format, so it's clear the plugin is for oh-my-zsh and not base zsh. Use `local` variables instead of manual unsetting.
  virtualenvwrapper: Replace "realpath" with portable zsh-native `:A` and `:h` modifiers
  Plugin now uses completion script from docker-compose repo.
  git plugin: fix ggl to avoid empty string see ohmyzsh/ohmyzsh#2790 (comment)
  Fix plugin/git ggpull and ggpush backward compatibility
  Fix merge conflict for jira-prefix and jira add comment
  Add missing space causing parse error.
  Fixed odd chars on mac for agnoster theme
  Add mix-fast plugin (similar to rake-fast)
  Update _docker
  Adding quotes to git completion discovery path
  A paver (Python build and configuration utility) plugin
  Revert "Added migration notification for rails plugin"
  Added github in web_search plugin.
  last-working-dir working with spaces in dirnames
  use local options to set no_equals before sourcing bash completion script
  git plugin: new/changed aliases gaa was brought back by popular demand — see #3535 gap was replaced with gapa — see #3682 gdc was replaced with gdca — see #3977
  Add reference to bundler plugin issue in README
  Add `leaves` command to `brew` completion
  remove trash command from osx plugin
  ...
ChristianLohmann pushed a commit to ChristianLohmann/oh-my-zsh that referenced this pull request Aug 31, 2015
ChristianLohmann pushed a commit to ChristianLohmann/oh-my-zsh that referenced this pull request Aug 31, 2015
inutano pushed a commit to inutano/oh-my-zsh that referenced this pull request Oct 19, 2015
shaohao pushed a commit to shaohao/config.d that referenced this pull request Nov 21, 2015
22632aa Merge pull request #3859 from gnagy/master
249d222 Cleanup gradle plugin file
950bbcc gradle plugin: also list tasks in subprojects
64e1252 Merge pull request #4623 from apjanke/dircycle-remove-redundant-bindings
5d8fd93 Merge pull request #4617 from ahmadawais/patch-1
7627004 Merge pull request #4612 from stereodenis/patch-1
5289edc Merge pull request #4592 from jstnlef/fix-weird-unstaged-behavior
c120417 Merge pull request #4619 from apjanke/mercurial-readme-tweak
c8e280f dircycle: remove redundant key bindings
8f823c6 Update README.md
cca422e Mercurial plugin: revise README
602cc62 Removed Similar Aliases
bee79f0 bundle outdated alias
135c376 Merge pull request #4563 from danhawkins/master
9041a23 Merge pull request #4598 from syk0saje/patch-1
06db648 typo: able take -> able to take
76c4238 I noticed that for certain projects with unstaged changed I would get a 'U' character instead of the '●' character. This should fix that.
8d388e4 use capit instead of shipit as shipit conflicts with npm package shipit
e44aa50 Merge pull request #4535 from robbyrussell/mcornella-patch-1
e9de366 Update custom location command and fix code format
ba20b98 Merge pull request #4016 from coopermaruyama/master
9264d75 Fix typo.
405ee83 Merge pull request #4500 from sachin21/modify_a_condition
d06f4d0 Fix backwards logic in uninstaller once and for all
a1755e6 Refactor for method in plugins/rake-fast/rake-fast.plugin.zsh
4e42e1f Fix conditional in uninstall prompt
b2010a0 Fix syntax error in confirmation prompt of uninstall.sh
ca5632b Fix syntax error in #4515 on certain shells
78dc858 Revert "Make install script safer"
8c84342 Merge pull request #4519 from evanandrewrose/master
fe02e02 Fix "be" -> "b" typo in coffee plugin README.md.
fdb0e23 Merge pull request #4507 from WhyEee/fix-no-tput
b3c10b9 Merge pull request #4505 from arvindch/checked-upgrade
e0c9ada Merge pull request #4214 from queria/chuck-linefix
662bdcc Merge pull request #4515 from brianloveswords/safer-install-script
c9d9375 Make install script safer
a7b4c09 Merge pull request #4526 from sachin21/fix_typo
2c8697b [FIX #4525]: Fix typo
8c73eb4 Merge pull request #4419 from apjanke/installer-termcap-hack
45f0a28 Merge pull request #4508 from Superbil/master
56345c2 Merge pull request #4473 from apjanke/5_1_1-bracketed-paste-hack
2c54428 Fixd bug for pyenv plugin
75e619b Fix install.sh/upgrade.sh for tput-less systems
e59e1c8 Check for git before trying to upgrade, as per #4504
aa15eba Merge pull request #4492 from arvindch/tweak-pyenv-plugin
8a362b2 Enable pyenv rehash
8a95ced Init pyenv virtualenvs too
306e3e7 Merge pull request #4459 from Scuilion/update-gradle-commands
b28db6b Merge pull request #4475 from apjanke/diagdump-5.1-fix
30d7a66 Merge pull request #4486 from gfvcastro/alias-rails-server-port-option
b18d386 Add option '--port' to 'rails server' alias.
57c2ac1 Merge pull request #4482 from sachin21/add_an_alias_for_upstream
ff1bd95 Merge pull request #4480 from volcov/master
101758f Merge pull request #4481 from apjanke/autoenv-emerg-fix
7597bf8 Add an alias for upstream
2d0e7fb autoenv: actually source autoenv once located
252078d add alias to sort by version
2522ab4 Merge pull request #4204 from DoctorJellyface/patch-1
0be21f0 Merge pull request #4440 from apjanke/autoenv-homebrew
0144802 Merge pull request #4464 from rchiossi/master
dc06e96 Merge pull request #4254 from apjanke/copyfile-portability
b1173d4 Merge pull request #4418 from Gnouc/master
2459add Merge branch 'master' of github.com:robbyrussell/oh-my-zsh
bb509dd Renaming colored-man to colored-man-pages because it needs to be.
1510e7d Merge pull request #4472 from theavish/master
d15521d diagnostics: fix for reserved-word changes in zsh 5.1
3551745 Disable bracketed-paste-magic in zsh 5.1.1, where it is buggy
a7f0c71 Fix ohmyz.sh link
6b73f5e Ask for confirmation before uninstall
f3fa418 Merge branch 'master' of github.com:robbyrussell/oh-my-zsh
d26549b Removing legacy rails-specific aliases from the Textmate plugin. This is probably best handled as a custom plugin.
62c86f5 Merge pull request #4444 from apjanke/git-extras-compatibility
b6d78df clip*: add xsel support
a954739 Update Gradle Commands
f104d16 Merge pull request #4455 from swvjeff/master
2d9df44 Fix 'ack-grep' bug for non-ubuntu users
920ab07 Merge pull request #4423 from gfvcastro/alias-rake-middleware
bff8868 Merge pull request #4429 from RobLoach/removeatom
867d586 Merge pull request #4445 from wweaver/git-hf-aliases
80179c1 Merge pull request #4453 from uberspot/master
5d24ba4 Merge pull request #3165 from hbin/fix-alias-afind-osx
30c7ef7 Merge pull request #4421 from jcpst/master
bd26498 Merge pull request #4424 from Gutem/patch-1
d7e7ef6 Merge pull request #4427 from xavhan/patch-1
df5e1f9 Add 3 more nmap aliases to nmap plugin
b35d78f Add Git Hubflow aliases
7f2656c git-extras: fix for compatibility with zsh _git
c146853 autoenv: also look in the Homebrew installation location for it
56b747a Merge branch 'autoenv-check' of github.com:kudos/oh-my-zsh into autoenv-homebrew
f9c16f9 Remove broken link and move npmg alias position
a9c8820 Merge pull request #4426 from apjanke/turn-off-3889-by-default
0516a39 Remove Atom plugin
df80081 Add alias for npm global install
4589bc6 completion: turn off the #3889 compfix check by default
1e305e0 Update Simulator's Path to XCode 7.x
3e04cd6 Add 'rake middleware' alias.
5af52fb gulp plugin: missing opening double quote & had unneeded parens on function
52e2aae Merge pull request #4411 from TylerCharlesworth/patch-1
e4fdb08 Merge branch 'master' into copyfile-portability
f94fee5 installer: don't bail on errors in color setup
758195c Encode64 Plugin - Fix wrong `echo` usage
2266368 Update sublime.plugin.zsh
b05ef10 Merge pull request #4121 from apjanke/chucknorris-check-for-fortune
a51a916 Merge pull request #4348 from andybateman/patch-1
9e29103 Merge pull request #4394 from PrestanceDesign/new-git-alias
156fa5f Merge pull request #4396 from TylerCharlesworth/patch-1
4b902d7 Merge pull request #4410 from justVitalius/master
dc3413b Fix print rvm version in amuse theme
b75b0b8 Merge pull request #4333 from mbologna/fedora_plugin
935948c Merge pull request #3646 from apjanke/installer-cygwin-support-3
b5a5bc9 Merge pull request #4337 from iCross/master
f186b62 Merge pull request #4387 from mbologna/fix_git_equal_remote
d47219f Merge pull request #4397 from vidakovic/master
c932eb3 Merge pull request #4385 from Philosoft/patch-1
c076fc0 Merge pull request #4392 from ag4ve/patch-1
4204cfd Merge pull request #4408 from DoomHammer/fix-chruby-test-expression
a97a308 Merge pull request #4349 from FishingCactus/fix-atom_plugin_for_cygwin
3b2d036 Merge pull request #4377 from fcrozat/master
ccc86da Merge pull request #4375 from PrestanceDesign/capistrano-plugin-fix
a861719 Merge pull request #4340 from pahnev/master
17088c6 Fix invalid test expression.
0c0450b Accept single and double quotes in Gulp plugin
07f08aa Adds Cygwin support
8e74f7c Add alias for print latest tag name
96ff861 Merge branch 'master' into installer-cygwin-support-3
7a63609 Correct repo dir
12e99b5 fix indentation
5323954 Uniform git prompt equal remote
e957ae4 Update README.md
95296bb also handle missing tput in upgrade script.
76a26a2 Merge pull request #4372 from afh/pull/emotty_theme
326c2b0 Replaced the use of 'print' with 'echo' in order to sanitise track and artist names
993e09c Added function for 'itunes playing' to display state when not playing
9f2acdc You can now use 'itunes status' as well as 'itunes playing' to show current track
29db0e0 Fixed colourisation of Now Playing function
a746e60 Update osx.plugin.zsh
884a879 Do not fail if tput is not available
1bb2715 Fix capistrano problem when generating autocompletion
f850296 Added cygwin support to atom plugin
7576f85 Merge remote-tracking branch 'robyrussel/master' into fix-atom_plugin_for_cygwin
1a51100 Fix issues with character widths in emotty theme
918d26e Merge pull request #3664 from apjanke/installer-portable-colors
6cddf72 Merge branch 'master' into installer-portable-colors
cbc1a08 Merge pull request #4342 from robobenklein/patch-1
25f2d59 Merge pull request #4353 from dzotokan/feat/stackPlugin
4d65dd2 Merge pull request #4310 from ablyler/add-codeclimate-plugin
e268ef3 Merge pull request #4320 from ixti/fix/aws-plugin-rprompt-pollution
183026f Merge pull request #4316 from bronzdoc/feature/rvm_amuse_theme
b29095f Merge pull request #4354 from henrikhodne/patch-1
c4d84f1 Merge pull request #4343 from apjanke/jira-readme
85f53b0 Merge pull request #4359 from noseglid/patch-1
ff780ba Merge pull request #4371 from afh/pull/emotty_theme
ce10457 Merge pull request #4370 from afh/pull/emotty_plugin
2dc980c Merge pull request #4331 from icholy/master
51677da Merge pull request #4091 from apjanke/agnoster-clarify-powerline
36884cc Merge pull request #4189 from bmdhacks/master
db14538 Merge pull request #4315 from mbologna/fancy-ctrl-z
3b29132 Merge pull request #4300 from igordejanovic/vim-escape-fname
cfba05c Merge pull request #4282 from ferenczy/master
ff3e0d5 Merge pull request #4266 from t413/master
3b5300c Merge pull request #4252 from Fice-T/master
9bd88bb Merge pull request #4251 from mcornella/fix-completion-dots
4f1caf0 Merge pull request #4237 from mcornella/fix-taskwarrior-plugin
6eb6017 Merge pull request #4235 from mcornella/fix-xcode-plugin
1e49dfc Merge pull request #4209 from ah450/npm-exec
0756555 Merge pull request #4201 from wkentaro/gnu-utils-findutils
576453c Merge pull request #4173 from sharkySharks/master
bb5bc64 Merge pull request #4155 from honnix/fix_color
681c42a Merge pull request #4154 from sfragis/toggle-sudo
f7c24e1 Merge pull request #4137 from troter/coffee-first-argument-with-double-quote
544eccb Fixing conflict in rails plugin merge with rake test shortcut
e3d305e Merge branch 'skv-headless-rails-rake-test'
04c8acf Merge branch 'rails-rake-test' of https://github.com/skv-headless/oh-my-zsh into skv-headless-rails-rake-test
fb0776e Merge pull request #4134 from boddhisattva/rails-rake-routes-alias
adaf89c Merge pull request #4113 from apjanke/gnzh-remove-eval
dde5540 Merge pull request #4093 from apjanke/osx-fix-tab-for-iterm
1324e61 Merge pull request #4050 from mbologna/michelebologna_fix_git_prompt
763bf63 Merge pull request #3971 from moul/pr-scaleway
0bb3e01 Merge pull request #3940 from apjanke/diagnostic-dump-function
8cf88f2 Merge pull request #3911 from mbologna/git_remote_status_equal
baf1aa1 Merge pull request #3661 from ericbottard/GradleWrapperFix
3c782f7 Merge pull request #3582 from apjanke/fold-terminalapp-plugin-into-termsupport
4bd6c43 Merge pull request #3408 from spacewander/git-extras
93c6b5d Merge pull request #3078 from akoenig/gulpjs
5e45c16 Merge pull request #2751 from drm00/fix-openbsd-colorls
cc53e4c Merge pull request #2471 from phstc/capistrano-multistage
56cdec7 Merge pull request #3889 from leycec/compaudit
550573b Add emotty theme
dce052d Add emotty plugin
5cf0a01 Use local gradlew
8c5b948 chruby: donʼt try to execute .sh files before loading
bb10ad0 Remove unnecessary sandbox fn
a8a8bc3 Add simple Stack commands list
e8639c7 Update to current robbyrussell/oh-my-zsh master
797e1f9 [plugins/bgnotify] fix for iTerm2 notification clicks
6e0fcf8 Fixed atom plugin for cygwin users
c9af79f jira: add README, "emulate -L zsh", add "dumpconfig" action
6642a99 xcode: extend xcselv to list versions and do completion
22287d0 handle multiple paths in GOPATH
36fea45 svn plugin: urldecode repo info
0233979 Fixed broken git branch icon
dca4295 Make Readme much clearer and explain edits.
953e4d8 Make Linux compatible
19c0b18 fix url-quote-magic not working issue
9e9b790 golang: improve go doc completion
6170fa4 Added fedora plugin, based on dnf/yum plugin
82ae41c Reorder xcode plugin file
213f46a Add xcselv documentation in the README
5584aa0 xcode: add version-based xcselv()
86d881c Added aliases for --now commands
d95589d Add README for the xcode plugin
ec3694c Make simulator dependant of currently active dev directory
24bdd8e Replace xcsel function with just an alias
6a830f3 Return error if no xcode files where found
cbdad58 Use zsh globbing instead of ls + grep in xc function
38d25a3 Update taskwarrior completion to latest version (Jul 26 2015)
75844fe Put relevant documentation into README file
b42efeb Switch off line wrapping in case dots occupy extra line
6a8d406 Use prompt expansion sequence to color red the output
3976e04 Use proper if comparison
9c08641 Merge pull request #4299 from mcornella/refactor-frontend-search-plugin
7a63cca Fix aws plugin RPROMPT pollution
46ddd88 diagnostics: switch to shasum, filter sysinfo using lines
d009f24 gnzh theme: fix "eval" and related problems. Switch to normal zsh %F/%f prompt escapes to avoid "eval" and extra variables. Wrap whole thing in anonymous function so the existing `local` statements actually work. Then switch '...' to eager "..." so stuff actually works with local variables. And local-ize the remaining variables that are used only in prompt construction.
93b4a6c Merge branch 'master' into osx-fix-tab-for-iterm
82c76f6 Merge changes from #4241 into installer-portable-colors
502f08b Add Cygwin support to installer. * Balk at incompatible Windows/MSYS git * Test for chsh presence before trying to use it * Replace non-portable `[[ ... ]]` and `[ x = *pattern* ]` constructs
c7d782f Add the update from @mtwentyman phstc/dotfiles#1 to make it work for older versions of capistrano
9a7b2d7 Moved comments and credits from source to README
bec496f Display rvm-prompt output.
6d7c39a Added fancy-ctrl-z plugin
ef4a315 Fix invocation of gradlew
b08431f Add codeclimate autocomplete plugin
c481c62 Refactor and clear up README file
d982e12 Reorder alias definitions
663ac56 Prettify frontend help output and clean up logic
ff706f3 Add "help" method in "frontend-search" plugin
f1472f1 Simplify frontend-search function with assoc array
7f64092 [vim-interaction plugin] Escaping special chars in file names and simplifying code.
0532860 Merge pull request #4285 from nmaggioni/master
7366b56 Merge pull request #4268 from ZhengzhongZhang/patch-1
01b3783 Merge pull request #4302 from kyleheyne/patch-1
022a060 thefuck-alias -> thefuck --alias
ba5fd57 Merge pull request #3989 from eubenesa/master
69f098a Mentioning that you can set the theme to 'random' and it'll possibly bake you a pie.
a77e23a Merge pull request #4109 from zhiyelee/patch-1
da6ece4 Merge pull request #4117 from nextgenthemes/patch-1
eb12ec1 Merge pull request #4146 from perobertson/heroku-help
ac85faa Merge pull request #4171 from linux-china/master
c1bff77 Merge pull request #4195 from jerryling315/master
3f95377 Merge pull request #4198 from matjack1/gclean-gpristine
daabe2a Merge pull request #4205 from mcornella/fix-git-prompt-plugin
c10d5c8 Merge pull request #4244 from Gnouc/master
69a1715 Merge pull request #4239 from yous/fix-linux-gems
adff369 Merge pull request #4220 from andytank123/master
ccaaa99 Merge pull request #4241 from heartinpiece/master
2f6d85d Merge pull request #4248 from gabetax/rbenv_plugin_load_performance
51c3ab7 Merge pull request #4283 from hanschen/master
14e1f0c Merge pull request #4286 from RobinDaugherty/rand-quote-failure
a228604 Merge pull request #4249 from KrauseFx/patch-1
9c9699d Merge pull request #4250 from mcornella/fix-divide-by-zero-emoji
6346cc9 Merge pull request #4260 from fgibaux/patch-1
c084a13 Merge pull request #4259 from apjanke/jira-prefix-and-help-and-stuff
e59f4cb Merge pull request #4271 from loctauxphilippe/patch-1
9bb99e1 Merge pull request #4284 from gsklee/patch-1
50d3294 Merge pull request #4289 from moonfruit/master
869b104 Merge pull request #4292 from cxbig/master
b3f167d Merge pull request #3613 from apjanke/remove-sed-i
a7aed69 Merge pull request #4170 from black-roland/master
b1d57fa Merge pull request #4294 from willmendesneto/master
0a80889 Frontend-search: add search in npm website
acf6039 improved alias conflict between git flow & git fetch
0a2c31f Remove redundant semicolon
fe92ea9 installer: switch twitter link to https
d923ceb Updated with @mcornella suggestions
96aefd2 Remove code, not comment it out
241be2d Fix rand-quote failure when site is unreachable
058bbe4 General compatibility
a127c4f 'ip' command compatibility and much quicker external IP detection
8ab1b6d Update README.markdown
1bf5c58 Update autojump plugin for latest brew installation
76f4871 Added missing commands to Vagrant plugin, updated commands description
18ef1ee Merge remote-tracking branch 'robbyrussell/master'
aaf5c8f added apt-get autoremove in ubuntu plugin
1aeebf6 Update link
7c31c7a Bring bgnotify plugin up to date with t413/zsh-background-notify
a9daea1 plugin symfony2 sf2.7 compatibility fix
dc42e8d jira: add completion
7cf892e Add dashboard support and default-action configuration. Some refactoring.
ee4a423 Merge branch 'pr-4158' into jira-prefix-and-help-and-stuff
caf667f Merge branch PR 4132 into jira-prefix-and-help-and-stuff
5c8b0cc Add clipcopy() and clippaste() generic cross-platform CLI clipboard functions. Change copydir, copyfile, and coffee plugins to use them, instead of the Mac-only `pbcopy` command.
00eb465 Merge branch 'master' into fold-terminalapp-plugin-into-termsupport
47d19cc Add defensive `emulate -L zsh` to termsupport functions
96c34ce Add a deprecation comment.
9121f3e Merge pull request #4 from wkentaro/fix-git-prompt-plugin
c4ba306 Show tag name when detached status if possible
c66c3ae Fix graphical bug in cypher theme when return status is non-zero
3f83331 removes a trailing white space
be667a2 Remove obsolete comment
3c69874 Clean up gitstatus.py
45473c3 Fix for initial or detached status branch info
30bed07 Parse UTF-8 output from git status
94007f7 git-prompt: collect all git status information by one cmd
6ff53d1 Cleanup of git-prompt plugin file
1d133ff Cleanup the rest of gitstatus.py
5642014 Pull in simplified version from @wkentaro
6443626 Pull in latest version from olivierverdier/zsh-git-prompt
c6a5f6e Check that list_size value is not zero before division
88243b8 Use right variable name to avoid zero-length array
de47e2d Use https instead of http
daedfca reduce rbenv plugin load time by 150ms by removing additional brew call
d20c111 rvm plugin: Fix `gems` to work with GNU sed
0238301 Emoji plugin - Fix wrong string comparison
192de6b Merge pull request #4238 from wubaiqing/master
1605d82 Merge pull request #4234 from mcornella/fix-fbterm-autostart
7c60da9 Merge pull request #4233 from apjanke/apple-term-no-dupe-folder-in-title
2ecb17c Merge pull request #4230 from mcornella/revert-custom-early-load
20f536c Merge pull request #4228 from mcornella/fix-virtualenvwrapper-quotes
b8dbd9b Merge pull request #4217 from mcornella/standard-open-command
4c1eda1 Merge pull request #4216 from gkze/master
e3a01e5 Merge pull request #4212 from NAR8789/master
f6a2b97 Merge pull request #4203 from apjanke/title-protect-promptsubst
45d640b Merge pull request #4200 from lislon/systemd-patch
84ecc66 Merge pull request #4172 from AlexTalker/fix-typo
8c3d4a9 Merge pull request #4095 from kd35a/master
9626a36 Merge pull request #3654 from Qix-/patch-1
afc36e2 Merge pull request #2446 from fallwith/emoji_plugin
c45fff1 Merge pull request #2367 from andrew-dwyer/n98-magerun
d1ea849 Merge pull request #2106 from adepasquale/master
58d2f93 Check if Zsh is installed prior to installing Oh My Zsh
dcd95dd Changes quotes so that path will be set appropriately on multiple runs
9caa215 Add Baidu support to web-search plugin
be10229 Exit only if the fbterm session closed correctly
14b4ba8 Move urlencode/urldecode functions to core lib
be5dcb8 Check if fbterm is installed and use $TTY variable
17da983 termsupport: avoid repeated dir in window title in Terminal.app
3fe3ce8 Revert "Move custon *.zsh file sourcing up so that they can load plugins and other things that come after."
ccb0ae5 Add quotes to support folders with whitespace
c3fbe4d Add support for Docker images from custom registries
720fb5b Support for 'scw' command (Scaleway CLI)
269ae84 Removes unnecessary single quotes
b760a10 Use standard open command in fasd and lighthouse plugins
d1d06b5 Use standard open command in current plugins
2d0bfcf Implement cross-platform open function open_command()
cddfc3b style fixes
bd893ac Merge pull request #1 from dlsniper/terraform
cf78586 Update to latest Terraform release 0.6.1
7f3e614 Add terraform completion
9c74128 chucknorris: add missing line/quote delimiters
aac5523 Additional chpwd clobbering fix for dirpersist
084792b Don't clobber chpwd
e1353fc Adds npmE alias
800af04 Add sc-launch as a shortcut for start & enable
90ea67e termsupport: protect title() with `emulate -L zsh`
daa04ba gnu-utils: add findutils (find,xargs,locate)
5554207 Add alias for "systemctl cat" and "systemctl edit"
fb8c446 Thefuck: fix global variable assignment
a2b574b git plugin: make gclean safer, introduce gpristine
96e5346 Merge branch 'master' of gh:robbyrussell/oh-my-zsh
2120b2e Add escaped home
3d5b343 Merge pull request #4122 from apjanke/venvw-treat-git-repo-as-venv-again
c83575d Add 'man' plugin.
b875df8 agnoster: speed up git prompt
f534b4b Thefuck: fixed compability with latest version
54e2740 Thefuck: replaced static alias with `eval "$(thefuck-alias)"`
8e8a133 Thefuck: combined with @cristim plugin. Code formating
b3ce0f3 Update README.markdown
fa25445 diagnostics: include output file name in dump output
803e5db improved the check for availability
0da9a4b fuck: added a basic plugin for https://github.com/nvbn/thefuck
e8caf22 Cygwin-specific "chsh" installation issue fixed.
da395c5 Secure umask enforced during installation.
cb55161 Completion insecurities handled on startup.
cacc6c3 replaced Om spelling so letters would not overlap
5a1dd14 removed incorrect Devanagari conjunct symbol at end of Om
a3f0439 Fix little typo that makes the statement useless.
e38455b Added conflict note (thefuck plugin)
b4a8cbf spring boot plugin
f838b56 spring boot plugin readme
cd2213a Thefuck plugin README
7a13a40 Added thefuck plugin https://github.com/nvbn/thefuck
e56c898 Merge pull request #1 from apjanke/emoji_plugin_3
9a39725 Remove redundant comments from the .zsh file (since they're in README now).
6d618ef emoji plugin: generate char map from Unicode UTR51 data files
a207a38 Merge pull request #4099 from moncho/master
afa3057 Add jira_url_help
46d1338 [theme] Fix color problem of steeef theme
ff8d799 Esc-esc now toggles sudo.
dcb175d Insecure completion handler added.
775ac3a The executable command on Mac OSX is 'ack' rather than 'ack-grep'.
b7617b3 Check for autoenv_init function before trying to source autoenv.
ffe8e54 add '--help' to heroku commands
bca720f diagnostics: include detailed OS version info if possible
1e8196d passing the first argument with double quote
ad4675c Concise local variables declarations
b1772c5 More consistent curly braces variables
37f45eb Making variables local in jira plugin
1e99168 Changing indents to be more consistent (2 spaces)
88a30a3 Changing string comparison for more zsh-like
750de22 rails rake test
dff0374 adds an alias to search for the rails routes that pattern match a string
8cf6100 installer: use terminfo for portable escape sequences Do not use terminal visual effects if not connected to a terminal.
19ea867 install.sh: use portable printf instead of echo
b1da3bb Adding ability to add JIRA_PREFIX as an env variable (e.g. in .zshrc) and minor refactor to bash curly variable braces
3ea3384 Merge pull request #4041 from apjanke/fix-jira-prefix-comment-merge
c968346 Merge pull request #4106 from apjanke/venvw-no-realpath
c82deed agnoster: Protect Unicode esape sequences with local LC_* settings
f73e642 virtualenvwrapper: treat git repos as project roots again (instead of requiring a .venv customization directory) Change error output to more conventional OMZ format, so it's clear the plugin is for oh-my-zsh and not base zsh. Use `local` variables instead of manual unsetting.
a2e01e9 chucknorris: check for strfile dependency Gives a better error message than "command not found: strfile", because it's not obvious to many users that strfile is part of fortune. Also handles the weird /usr/sbin install location for strfile on Cygwin.
2e92ff8 Adds agar = apt-get autoremove
efb04d6 add git alias `gcam` -  git commit -am
c1f1f91 virtualenvwrapper: Replace "realpath" with portable zsh-native `:A` and `:h` modifiers
9813ff5 omz_diagnostic_dump: Add umask and $fpath listing. This helps catch issues with compinit and insecure directories.
0950f9c Plugin now uses completion script from docker-compose repo.
546b99a Use 'quit all' instead of counting needed quits
689b5ab osx: fix tab* functions so cd works in iTerm2, exit status is correct, and error messages are not discarded.
4cd281b agnoster: Define Powerline chars with escape sequence, and use same character on all platforms. Add clarifying comments. This makes everything consistent with the current Powerline-patched fonts definitions.
599831b Merge pull request #4058 from ncanceill/plugin-git
d24196c git plugin: fix ggl to avoid empty string see ohmyzsh/ohmyzsh#2790 (comment)
ed6645a Fix plugin/git ggpull and ggpush backward compatibility
68b792b Change to use omz git_prompt* functions
d0670aa Fix merge conflict for jira-prefix and jira add comment
ab18795 Merge pull request #4002 from aliafshar/patch-1
01e355f In addition to the already existing variables ZSH_THEME_GIT_PROMPT for behind, ahead and diverged remote, I added ZSH_THEME_GIT_PROMPT_EQUAL_REMOTE.
f66a54f Add missing space causing parse error.
8921902 Merge pull request #3852 from sachin21/add_alias_of_bundle_clean
5d214af Merge pull request #3858 from muchweb/muchweb-patch-1-editor
7daf740 Merge pull request #3874 from diraol/patch-2
0665ece Merge pull request #3973 from moul/pr-boot2docker-update
31b351c Merge pull request #3947 from mkwmms/patch-1
0a8ca6a Merge pull request #3918 from cbazin/master
b55effd Merge pull request #3919 from delphij/history-extendedglob
34d3680 Merge pull request #3838 from forivall/hyphen-insensitive
3a57076 Merge pull request #3813 from ziegs/fix_gradle_tasks
628c1fe Merge pull request #3848 from tristola/master
058def3 Merge pull request #3798 from dnixx/vundle-update
5fba46a Merge pull request #3821 from tresni/fix_minimal
c0b283c Merge pull request #3833 from coopermaruyama/master
6a340d9 Merge pull request #3988 from UserTaken/docker_update
ea5ff03 Merge pull request #3759 from mikeokner/master
04c301b Merge pull request #3975 from wernerb/patch-1
a1e722d Merge pull request #3976 from rodrigoargumedo/patch-1
422db48 Merge pull request #3986 from evilhamsterman/master
3d2bf22 Merge pull request #4001 from ivanfoo/fixOddCharsOnMac
a778463 Merge pull request #3929 from GunfighterJ/GunfighterJ-patch-sublime3
78bbf7a Merge pull request #3809 from ncanceill/easymerge
c6460ef Fixed odd chars on mac for agnoster theme
a7e7982 Add mix-fast plugin (similar to rake-fast)
55b1a2b Update _docker
3d670c0 Adding quotes to git completion discovery path
4cc0a26 A paver (Python build and configuration utility) plugin
26c7adf Revert "Added migration notification for rails plugin"
8b95bdb Added github in web_search plugin.
83295ec last-working-dir working with spaces in dirnames
d0b690b use local options to set no_equals before sourcing bash completion script
9eaf511 Merge pull request #3990 from ncanceill/plugin-git
f1a43da git plugin: new/changed aliases gaa was brought back by popular demand — see #3535 gap was replaced with gapa — see #3682 gdc was replaced with gdca — see #3977
e55d84f Add reference to bundler plugin issue in README
763cef8 Add `leaves` command to `brew` completion
4b76b74 remove trash command from osx plugin
cf3fb87 Added README.md file for ForkLift plugin
81da076 Added README.md file for atom plugin
a2d7d36 Added README.md file
c28b226 Fix README.md for sst command
0e35bd4 Plugins: vi-mode: Add first README file
0f96e8e Plugins: archlinux - add basic README.
e592968 Plugins: archlinux - use command -v in favor of which
e0ce876 Plugins: apache2-macports - add README
3f92985 Added references to the `external themes` wiki page.
8eb31a6 git plugin: fix ggpnp when called without argument also allow multiple arguments for ggp and ggl aliases
81eec40 * Added header with help and information * Moved git information to left prompt, with   support for:     * +ZSH_THEME_GIT_PROMPT_UNTRACKED, MODIFIED,     STASHED, ADDED, UPSTREAM STATUS     (if applicable) * Removed right prompt * Refactored following Google's guidelines for   scripts [ http://goo.gl/oJSXH2 ]     * Using local variables where applicable
1f008b4 Update Mix complition upto 1.0.4
02c2b74 Update aliases in laravel5.plugin.zsh file
266894c Update taskwarrior.plugin.zsh
1a4dc0d Renamed 'ss' alias to 'sstat' (to avoid collision with /bin/ss).
69dee65 Fixed typo in README
8791d7e Update bgnotify.plugin.zsh
980528f fix typo
af4ffe5 adb: add more commands
c838b9a Update README.markdown
fb5b83d Fixed jump pluging to display the right mark name on 'mark . '
563e105 Added README for mercurial plugin
4ab4300 Add git to prerequisites
23ac32d add help link to install zsh
4c409b0 sublime: Make subl a function so it can be called from functions in other modules
e8ac8b9 Added support for detecting Sublime Text 3 on Arch Linux
6bec3c6 Update history-substring-search README
83c3316 Added the tugboat autocompletion plugin
f513999 git plugin: make b local in gg* functions because it leaked, and led to #3991
6ff96da git plugin: fix error msg in gwip alias because git rm will fail when no files were deleted
6c29041 git plugin: global var for git command due to issues like #3962 until a proper plugin-loading system is implemented
a570f4b git plugin: bring back olg gg aliases by popular demand, see #3972
10c92cc Updates to ember-cli plugin
557dc09 More run and create options
2fb3265 Only load url-quote-magic if it is available. Partially fixes #3614
25df9f3 Disable globbing when executing `zeus rake` aliases to enable use of square brackets without escaping
2d40cc0 Add git_prompt_behind and git_prompt_exists
f21a672 add kitchen completion plugin from @petere
70c4a27 Added a possibility to display the remote branch and the number of commits you are ahead or behind
41104f8 Fix homebrew directory in aws plugin.
1653545 Recognize comments by default.
a28dbc8 Move custon *.zsh file sourcing up so that they can load plugins and other things that come after.
8652fd6 added comment functionality
de56943 Improved the `_git_time_since_commit` function.
729b19c Remove docker insert command
45e3f62 Add README for httpie plugin
3cc3084 Fix typo in $VCS_CLEAN_COLOR in adben theme
a98501d Grep bug in Agnoster
d686f8a generate with 'pod --completion-script' /cc thx to @ajmccall
a2f782e updated the command list to the latest cocoapod version (0.33.0)
6a1b832 No input for Update Check defaults to Yes
b7d041c Add rdrs method to reset the database(s)
5770ad5 Set AWS_PROFILE and use existing RPROMPT
3a77433 Add new boot2docker options
af68165 Fix name of backed-up zshrc
afadb5a diagnostics: add zstyle state to output
82c1288 Include some bash rc files; improve formatting; more version info
4224c2a Merge pull request #3494 from AlexTalker/short-host
51e366e Merge pull request #3339 from Xophmeister/master
4c21557 Merge pull request #3320 from moul/pr-boot2docker
3e88e53 Merge pull request #2999 from nicorevin/master
dac07b2 Merge pull request #2736 from felipec/fc/gitfast
35c7b7b Merge pull request #1951 from Neal/extract-ipsw
cb89fcd Merge pull request #2836 from ptamarit/chsh-etc-shells
11c7baf Merge pull request #3651 from mcornella/batch-close-3
a449d53 Merge pull request #2790 from ncanceill/plugin-git
da21092 Merge pull request #3945 from nicolas-brousse/homebrew-plugin
1b625af Merge pull request #3952 from lbraun/patch-1
cffeefd Add installation instructions to README
cc63928 Round 3 of batch-closing obsolete issues
7f232f6 Respect $ZSH_CACHE_DIR when creating fasd's cache
9c75551 Merge pull request #3887 from jadb/add-cakephp3-plugin
7416018 Create new aliases for homebrew plugin
ea6adc5 Add omz_diagnostic_dump() to help with bug reports.
0c8cb11 Add sublime text 3 paths to check list
743be91 Don't leak extendedglob to global environment.
7b478d7 Detect the .venv in any parent directory of the current directory
6504a2d Add CakePHP3 plugin
4d0aca4 Differing upgrade and safe-upgrade
2449e41 Add file completion as optional argument
de76905 Fix awk command. \s only working in gawk
5b75cc7 Many updates to git plugin (see #2790)
9a5e1a0 Use $EDITOR
03b8c19 Fix 'chsh' by checking '/etc/shells' instead of using 'which'
d60d4f6 Add alias of bundle clean
83cf909 Added aliases for docker compose
d80918b add markdown extension to README
24552f0 Add readme and add new alias cfpc: paste+compile+copy
4512161 Update template zshrc with HYPHEN_INSENSITIVE
1400346 Merge pull request #3825 from kennedyoliveira/master
cabb8f7 Merge pull request #3814 from willmendesneto/frontend-search-add-autocomplete
a315ddc typofix
8e8cdc0 Add coffeescript aliases: cf, cfc, cfp
66052e2 Add hyphen insensitivity
2dbf995 Fixing some issues where show repeated weird values, and fixed commands that need the container autocomplete without being running, like start, now it autocompletes showing all the containers so you can start without knowing the right name
5c9c373 Fix minimal.zsh-theme's check for in_svn and add support for mercurial
590d393 Add autocomplete for frontend-search
551d68a Fixes gradle autocomplete. Regex did not include subproject tasks before.
ff4663a Merge pull request #3802 from willmendesneto/patch-1
05f2ad3 fix stackoverflow url in search
b4729d3 Merge pull request #3792 from willmendesneto/frontend-search-add-new-repositories
7f0b577 Use the newest Vundle commands
eea77b7 Add stackoverflow link
cb0718c chucknorris: locate plugin dir using $0 instead of hardcoded $ZSH
88f42b6 Add support for variant "utf8" locale suffix spelling. Fix dumb bug in iconv call that would cause it to hang.
cb37c93 Remove unnecessary braces.
1246c3e install.sh: Replace nonstandard "sed -i" with sed + mv commands. Makes portable to systems whose sed lacks "-i", like OpenBSD.
5f90781 plugins/chucknorris: Add automatic updating of the compiled fortune data file. Use local variable for readability, and anonymous function to provide a scope for the local variable.
187cf07 For unspecified encodings, assume it's UTF-8 or compatible (e.g. ASCII) and muddle through without character encoding conversion.
702ff1c Add support for non-UTF-8 encodings in caller's locale.
8cf04ed Fix echo nothing if $SHORT_HOST doesn't exist.
3a18c33 In termsupport, use LC_CTYPE instead of LANG to enable byte-by-byte text processing. LANG doesn't seem to actually work.
a9e97e5 Remove terminalapp plugin and fold its implementation in to lib/termsupport.zsh. Replaces the redundant Terminal.app support that was recently added to termsupport.
f1d12c5 Add .ipsw to the extract plugin.
0c77e4b update git-extras plugin
663d432 Minor cosmetic fix to minimal theme
95d5f2c [boot2docker plugin] Initial version
8f9a72a Moved plugin.
20edd5f gulp.js plugin
8a43d35 fix paclist() for non-english locales
eb06484 added emoji plugin to make it easy to display emoji characters in the terminal
1232485 Added ssh-like mosh window title
f516b7c add check for colored ls on openbsd. (retry of #2225)
5918d91 gitfast: back-port prompt fix
6a5c8fb gitfast: update to upstream v1.9.2
c9fbfc9 Uses `shipit` instead of `xcap`
16ae4e1 Adds support capistrano multistage completion
00b2cc6 New plugin for the n98-magerun Magento command line tool

git-subtree-dir: oh-my-zsh
git-subtree-split: 22632aac7c99e02ec38223c84b2348435a82d1b5
allenlsy pushed a commit to allenlsy/.oh-my-zsh that referenced this pull request Nov 23, 2015
* 'master' of https://github.com/robbyrussell/oh-my-zsh: (89 commits)
  virtualenvwrapper: Replace "realpath" with portable zsh-native `:A` and `:h` modifiers
  Plugin now uses completion script from docker-compose repo.
  git plugin: fix ggl to avoid empty string see ohmyzsh/ohmyzsh#2790 (comment)
  Fix plugin/git ggpull and ggpush backward compatibility
  Fix merge conflict for jira-prefix and jira add comment
  Add missing space causing parse error.
  Fixed odd chars on mac for agnoster theme
  Add mix-fast plugin (similar to rake-fast)
  Update _docker
  Adding quotes to git completion discovery path
  A paver (Python build and configuration utility) plugin
  Revert "Added migration notification for rails plugin"
  Added github in web_search plugin.
  last-working-dir working with spaces in dirnames
  use local options to set no_equals before sourcing bash completion script
  git plugin: new/changed aliases gaa was brought back by popular demand — see #3535 gap was replaced with gapa — see #3682 gdc was replaced with gdca — see #3977
  Add reference to bundler plugin issue in README
  Add `leaves` command to `brew` completion
  remove trash command from osx plugin
  Added README.md file for ForkLift plugin
  ...
saschpe added a commit to saschpe/dotfiles that referenced this pull request Jan 27, 2016
5464fe3 Center Oh My Zsh logo
e5f5d79 Merge branch 'low-ghost-patch-1'
494b07b Update gitignore.plugin: comma separated arguments
d60cf5c Merge branch 'slariviere-master'
7daa207 Adding support for stdin input in the encode64 plugin
40016af Merge pull request #4755 from psprint/master
77f93f6 znt: optimizations for zsh<=5.2, use $BUFFER if cmd is not from history
87e782f Merge pull request #4738 from valentinbud/feature-vault
b9ace28 Vault basic autocompletion.
071db94 Merge pull request #4713 from apjanke/forklift-new-homepage
4b9bc91 Merge pull request #4537 from agireud/command-not-found-OSX
078cd4a Merge pull request #4759 from swrobel/patch-1
9df79bc Merge pull request #4773 from mbologna/patch-1
87f8251 Re-added $ZSH_THEME_GIT_PROMPT_EQUAL_REMOTE
9dd8def forklift: update homepage URL and tweak formatting
3dfd216 chruby plugin locals moved inside function
686e460 Merge branch 'sachin21-a_happy_new_year'
03cc1f7 Cleanup LICENSE file and fix README link
fdde897 Update year to 2016
f558a46 Merge pull request #4709 from mcornella/fix-local-vars-in-git-prompt
0842384 Put `local var` declaration in its own line in lib/git.zsh
30ddf25 Merge pull request #4695 from mcornella/add-hub-completion
69c73a4 Merge pull request #4704 from paulcalabro/patch-1
247a582 Fixed a typo.
5adb06d Merge pull request #4702 from prikhi/master
3ebbb40 colored-man-pages: Use Portable `less` Path
6ad6d11 Merge pull request #4700 from giordanovi/master
015437c Update gulp.plugin.zsh
3162de5 Add hub's completion file
4b95c16 Merge branch 'fix-colored-man-pages-syntax'
5e310c5 Fix syntax error in colored-man-pages
fe9ff63 Merge pull request #4463 from giordanovi/master
4f314e2 Update gulp.plugin.zsh
8042394 Update gulp.plugin.zsh
cb11d13 Merge pull request #4697 from psprint/master
d30a501 znt: more optimizing workarounds for 5.0.6 <= zsh < 5.2
5de1704 Merge branch 'cknoblauch-patch-1'
09d2a59 Fix style of colored-man-pages plugin
a815729 colored-man plugin: Quoted PATH variable
dd29954 Merge branch 'hallabro-consistent-wording-update'
18ca953 Use consistent wording when updating
ef31d06 Merge pull request #4139 from ultimatemonty/patch-1
8a3b78e Merge pull request #4536 from alexws54tk/patch-1
e344f4c Merge pull request #4420 from apjanke/git-move-current_branch-to-core
9f55213 Move current_branch() from git plugin to core lib/git.zsh
bfd2d8d Merge pull request #4498 from gfvcastro/alias-rake-stats
8d6fcce Merge pull request #4589 from apjanke/agnoster-powerline-char-stronger-warning
93c00cc Merge pull request #4451 from victor-torres/branch-plugin
d988ee0 Merge pull request #4568 from blueyed/archlinux-improve-commands-lookup
fe63ed0 Updating speed test info and using zsh command line.
cf5db83 Implementing mcornella's suggestions in pull request 4451.
531789e Merge pull request #4628 from moyamo/master
bd384a0 Merge pull request #4667 from dbohdan/patch-1
b15918d "fishy" theme: Fix "~" use in prompt
71deb74 Fix indentation
d779750 Default to using terminfo to set the terminal title
6a8692d Merge pull request #4676 from bamarni/composer-stderr
4108c48 Merge pull request #4690 from kaelig/patch-1
6190d3e Point to the GitHub repository
f564159 Merge branch 'GNUletik-master'
95aa9bd Better research history with arrow keys
273063a Merge pull request #4663 from psprint/master
d54d896 Merge pull request #3966 from apjanke/fix-spectrum-ls
4d154ab Merge branch 'apjanke-histsubstr-double-bind'
45822e8 history-substring-search: bind arrows in both emacs and viins modes
11de60f Merge pull request #3965 from apjanke/spectrum-hide-codes
4fbfb14 Add back the `-` alias to go to the previous directory
b6997f6 Update link to git completion
5e950d4 Merge pull request #4689 from apjanke/fix-non-numeric-versions
45e42ef Merge pull request #4657 from hghwng/master
07fcbbe Merge pull request #4641 from WeeBull/patch-1
c52f677 common-aliases: handle "dev" versions in version check
0cca3c0 Merge pull request #4687 from gmccue/web-search-ecosia
fb5effd Add Ecosia to web-search plugin.
357d57c znt: include some status information on top of the window
0d45e77 [Composer] redirect stderr to /dev/null for completion commands
ee34381 Use $HOME instead of tilde inside quotes
3841115 Merge pull request #4654 from mcornella/termsupport-cleanup
c793bae znt: optimize heap usage for older Zsh's (e.g. 5.0.8)
2e3731c "fishy" theme: Shorten path .foo to .f, not .
89205f9 znt: faster startup of tools using colorifying (e.g. n-history)
a42a3ee Recognize Firefox addon and Android packages.
c82f49e Merge pull request #4652 from psprint/master
4e30688 Cleanup update_terminalapp_cwd function
eca912e Quote all variables in if statements
103eb32 Use a case structure to id terminal types
00344f7 Merge branch 'ferenczy-cygwin'
63d7500 Added setting of the window title in Cygwin
b457ae2 Merge pull request #4651 from ionelmc/patch-1
f7ed724 Merge pull request #3321 from moul/pr-tmux-cssh
d55111f Support all kinds of putty-like terminal strings.
78af29e Merge branch 'marking-master'
584e0a6 Use shwordsplit in open_command()
afdfe23 Add empty string parameter to start command
0a79f1e make this work in the git-for-windows SDK
d427ac1 znt: twice as fast searching
ae84be7 znt: updated README.md
a19ec10 Merge pull request #4649 from psprint/master
39e4dfb Updated README.md
c885290 Renamed README.txt to README.md
711c1bc Add support for "putty" $TERM in termsupport.zsh
c2b4d9f znt: n-history supports multi-line cmds and starts with current buffer
afd28bf Merge pull request #4368 from psprint/master
fea74b4 Fix open_command nohup call
ef031df Merge pull request #4207 from mpscholten/master
46824b3 Merge pull request #4191 from apjanke/vi-mode-fix-smkx
d3b9520 Merge branch 'apjanke-z-allow-custom'
2205aa4 z plugin: fix loading from custom location
85d9495 Merge pull request #4181 from posva/z
96108e1 Merge branch 'apjanke-histsubstr-update-2015_04_26'
7e39839 history-substring-search: update to upstream version 2015-09-28
d7e6ba0 history-substring-search: add a script to automatically update OMZ from the upstream repo
befb5b6 Merge pull request #4634 from mfaerevaag/master
424800e Merge pull request #4539 from Gnouc/master
90e1630 Merge pull request #4443 from apjanke/github-update
dfe10af Merge branch 'apjanke-termsupport-protect-subshell'
f0981d5 termsupport: protect subshell with quotes
d2e1c71 Merge pull request #4534 from mcornella/fix-open_command-nohup-tmux
ebfba0e Drop the use of nohup on OSX for tmux compatibility
b57ddd6 Use actual `commit --amend` command for Mercurial
7d9648e [wd] update minor version (v0.4.2)
22632aa Merge pull request #3859 from gnagy/master
249d222 Cleanup gradle plugin file
950bbcc gradle plugin: also list tasks in subprojects
64e1252 Merge pull request #4623 from apjanke/dircycle-remove-redundant-bindings
5d8fd93 Merge pull request #4617 from ahmadawais/patch-1
7627004 Merge pull request #4612 from stereodenis/patch-1
5289edc Merge pull request #4592 from jstnlef/fix-weird-unstaged-behavior
c120417 Merge pull request #4619 from apjanke/mercurial-readme-tweak
c8e280f dircycle: remove redundant key bindings
8ea7735 vi-mode: remove line-init/finish widgets that broken terminfo keybindings
8f823c6 Update README.md
cca422e Mercurial plugin: revise README
602cc62 Removed Similar Aliases
bee79f0 bundle outdated alias
135c376 Merge pull request #4563 from danhawkins/master
9041a23 Merge pull request #4598 from syk0saje/patch-1
06db648 typo: able take -> able to take
76c4238 I noticed that for certain projects with unstaged changed I would get a 'U' character instead of the '●' character. This should fix that.
cc116f6 agnoster: stronger warning about changing SEGMENT_SEPARATOR character
24492a2 Update github plugin to work with current hub versions
d336396 Updated z version
c25002a Removing `source` command
f655793 Add OSX support for command-not-found
4c292ea Initial commit of Zsh Navigation Tools
9e4aba4 archlinux: use $+commands instead of 'command -v' in a subshell
8d388e4 use capit instead of shipit as shipit conflicts with npm package shipit
53a6335 Change coding style
45cd2df Update uninstall.sh
67abf0f Update frontcube.zsh-theme
e44aa50 Merge pull request #4535 from robbyrussell/mcornella-patch-1
e9de366 Update custom location command and fix code format
ba20b98 Merge pull request #4016 from coopermaruyama/master
9264d75 Fix typo.
405ee83 Merge pull request #4500 from sachin21/modify_a_condition
d06f4d0 Fix backwards logic in uninstaller once and for all
a1755e6 Refactor for method in plugins/rake-fast/rake-fast.plugin.zsh
4e42e1f Fix conditional in uninstall prompt
b2010a0 Fix syntax error in confirmation prompt of uninstall.sh
ca5632b Fix syntax error in #4515 on certain shells
78dc858 Revert "Make install script safer"
8c84342 Merge pull request #4519 from evanandrewrose/master
fe02e02 Fix "be" -> "b" typo in coffee plugin README.md.
fdb0e23 Merge pull request #4507 from WhyEee/fix-no-tput
b3c10b9 Merge pull request #4505 from arvindch/checked-upgrade
e0c9ada Merge pull request #4214 from queria/chuck-linefix
662bdcc Merge pull request #4515 from brianloveswords/safer-install-script
c9d9375 Make install script safer
a7b4c09 Merge pull request #4526 from sachin21/fix_typo
2c8697b [FIX #4525]: Fix typo
8c73eb4 Merge pull request #4419 from apjanke/installer-termcap-hack
45f0a28 Merge pull request #4508 from Superbil/master
56345c2 Merge pull request #4473 from apjanke/5_1_1-bracketed-paste-hack
2c54428 Fixd bug for pyenv plugin
75e619b Fix install.sh/upgrade.sh for tput-less systems
e59e1c8 Check for git before trying to upgrade, as per #4504
e5164d7 Add 'rake stats' alias.
aa15eba Merge pull request #4492 from arvindch/tweak-pyenv-plugin
8a362b2 Enable pyenv rehash
8a95ced Init pyenv virtualenvs too
306e3e7 Merge pull request #4459 from Scuilion/update-gradle-commands
b28db6b Merge pull request #4475 from apjanke/diagdump-5.1-fix
30d7a66 Merge pull request #4486 from gfvcastro/alias-rails-server-port-option
b18d386 Add option '--port' to 'rails server' alias.
57c2ac1 Merge pull request #4482 from sachin21/add_an_alias_for_upstream
ff1bd95 Merge pull request #4480 from volcov/master
101758f Merge pull request #4481 from apjanke/autoenv-emerg-fix
7597bf8 Add an alias for upstream
2d0e7fb autoenv: actually source autoenv once located
252078d add alias to sort by version
2522ab4 Merge pull request #4204 from DoctorJellyface/patch-1
0be21f0 Merge pull request #4440 from apjanke/autoenv-homebrew
0144802 Merge pull request #4464 from rchiossi/master
dc06e96 Merge pull request #4254 from apjanke/copyfile-portability
b1173d4 Merge pull request #4418 from Gnouc/master
2459add Merge branch 'master' of github.com:robbyrussell/oh-my-zsh
bb509dd Renaming colored-man to colored-man-pages because it needs to be.
1510e7d Merge pull request #4472 from theavish/master
d15521d diagnostics: fix for reserved-word changes in zsh 5.1
3551745 Disable bracketed-paste-magic in zsh 5.1.1, where it is buggy
a7f0c71 Fix ohmyz.sh link
6b73f5e Ask for confirmation before uninstall
f3fa418 Merge branch 'master' of github.com:robbyrussell/oh-my-zsh
d26549b Removing legacy rails-specific aliases from the Textmate plugin. This is probably best handled as a custom plugin.
ee8f377 Added support to subtask through gulp --tasks-simple command
62c86f5 Merge pull request #4444 from apjanke/git-extras-compatibility
b6d78df clip*: add xsel support
a954739 Update Gradle Commands
f104d16 Merge pull request #4455 from swvjeff/master
2d9df44 Fix 'ack-grep' bug for non-ubuntu users
920ab07 Merge pull request #4423 from gfvcastro/alias-rake-middleware
bff8868 Merge pull request #4429 from RobLoach/removeatom
867d586 Merge pull request #4445 from wweaver/git-hf-aliases
80179c1 Merge pull request #4453 from uberspot/master
5d24ba4 Merge pull request #3165 from hbin/fix-alias-afind-osx
30c7ef7 Merge pull request #4421 from jcpst/master
bd26498 Merge pull request #4424 from Gutem/patch-1
d7e7ef6 Merge pull request #4427 from xavhan/patch-1
df5e1f9 Add 3 more nmap aliases to nmap plugin
d49cacf Add branch plugin
b35d78f Add Git Hubflow aliases
7f2656c git-extras: fix for compatibility with zsh _git
c146853 autoenv: also look in the Homebrew installation location for it
56b747a Merge branch 'autoenv-check' of github.com:kudos/oh-my-zsh into autoenv-homebrew
f9c16f9 Remove broken link and move npmg alias position
a9c8820 Merge pull request #4426 from apjanke/turn-off-3889-by-default
0516a39 Remove Atom plugin
df80081 Add alias for npm global install
4589bc6 completion: turn off the #3889 compfix check by default
1e305e0 Update Simulator's Path to XCode 7.x
3e04cd6 Add 'rake middleware' alias.
5af52fb gulp plugin: missing opening double quote & had unneeded parens on function
52e2aae Merge pull request #4411 from TylerCharlesworth/patch-1
e4fdb08 Merge branch 'master' into copyfile-portability
f94fee5 installer: don't bail on errors in color setup
758195c Encode64 Plugin - Fix wrong `echo` usage
2266368 Update sublime.plugin.zsh
b05ef10 Merge pull request #4121 from apjanke/chucknorris-check-for-fortune
a51a916 Merge pull request #4348 from andybateman/patch-1
9e29103 Merge pull request #4394 from PrestanceDesign/new-git-alias
156fa5f Merge pull request #4396 from TylerCharlesworth/patch-1
4b902d7 Merge pull request #4410 from justVitalius/master
dc3413b Fix print rvm version in amuse theme
b75b0b8 Merge pull request #4333 from mbologna/fedora_plugin
935948c Merge pull request #3646 from apjanke/installer-cygwin-support-3
b5a5bc9 Merge pull request #4337 from iCross/master
f186b62 Merge pull request #4387 from mbologna/fix_git_equal_remote
d47219f Merge pull request #4397 from vidakovic/master
c932eb3 Merge pull request #4385 from Philosoft/patch-1
c076fc0 Merge pull request #4392 from ag4ve/patch-1
4204cfd Merge pull request #4408 from DoomHammer/fix-chruby-test-expression
a97a308 Merge pull request #4349 from FishingCactus/fix-atom_plugin_for_cygwin
3b2d036 Merge pull request #4377 from fcrozat/master
ccc86da Merge pull request #4375 from PrestanceDesign/capistrano-plugin-fix
a861719 Merge pull request #4340 from pahnev/master
17088c6 Fix invalid test expression.
0c0450b Accept single and double quotes in Gulp plugin
07f08aa Adds Cygwin support
8e74f7c Add alias for print latest tag name
96ff861 Merge branch 'master' into installer-cygwin-support-3
7a63609 Correct repo dir
12e99b5 fix indentation
5323954 Uniform git prompt equal remote
e957ae4 Update README.md
95296bb also handle missing tput in upgrade script.
e6ccd37 Merge master (rebase being super annoying). Fix conflicts
76a26a2 Merge pull request #4372 from afh/pull/emotty_theme
326c2b0 Replaced the use of 'print' with 'echo' in order to sanitise track and artist names
993e09c Added function for 'itunes playing' to display state when not playing
9f2acdc You can now use 'itunes status' as well as 'itunes playing' to show current track
29db0e0 Fixed colourisation of Now Playing function
a746e60 Update osx.plugin.zsh
884a879 Do not fail if tput is not available
1bb2715 Fix capistrano problem when generating autocompletion
f850296 Added cygwin support to atom plugin
7576f85 Merge remote-tracking branch 'robyrussel/master' into fix-atom_plugin_for_cygwin
1a51100 Fix issues with character widths in emotty theme
918d26e Merge pull request #3664 from apjanke/installer-portable-colors
6cddf72 Merge branch 'master' into installer-portable-colors
cbc1a08 Merge pull request #4342 from robobenklein/patch-1
25f2d59 Merge pull request #4353 from dzotokan/feat/stackPlugin
4d65dd2 Merge pull request #4310 from ablyler/add-codeclimate-plugin
e268ef3 Merge pull request #4320 from ixti/fix/aws-plugin-rprompt-pollution
183026f Merge pull request #4316 from bronzdoc/feature/rvm_amuse_theme
b29095f Merge pull request #4354 from henrikhodne/patch-1
c4d84f1 Merge pull request #4343 from apjanke/jira-readme
85f53b0 Merge pull request #4359 from noseglid/patch-1
ff780ba Merge pull request #4371 from afh/pull/emotty_theme
ce10457 Merge pull request #4370 from afh/pull/emotty_plugin
2dc980c Merge pull request #4331 from icholy/master
51677da Merge pull request #4091 from apjanke/agnoster-clarify-powerline
36884cc Merge pull request #4189 from bmdhacks/master
db14538 Merge pull request #4315 from mbologna/fancy-ctrl-z
3b29132 Merge pull request #4300 from igordejanovic/vim-escape-fname
cfba05c Merge pull request #4282 from ferenczy/master
ff3e0d5 Merge pull request #4266 from t413/master
3b5300c Merge pull request #4252 from Fice-T/master
9bd88bb Merge pull request #4251 from mcornella/fix-completion-dots
4f1caf0 Merge pull request #4237 from mcornella/fix-taskwarrior-plugin
6eb6017 Merge pull request #4235 from mcornella/fix-xcode-plugin
1e49dfc Merge pull request #4209 from ah450/npm-exec
0756555 Merge pull request #4201 from wkentaro/gnu-utils-findutils
576453c Merge pull request #4173 from sharkySharks/master
bb5bc64 Merge pull request #4155 from honnix/fix_color
681c42a Merge pull request #4154 from sfragis/toggle-sudo
f7c24e1 Merge pull request #4137 from troter/coffee-first-argument-with-double-quote
544eccb Fixing conflict in rails plugin merge with rake test shortcut
e3d305e Merge branch 'skv-headless-rails-rake-test'
04c8acf Merge branch 'rails-rake-test' of https://github.com/skv-headless/oh-my-zsh into skv-headless-rails-rake-test
fb0776e Merge pull request #4134 from boddhisattva/rails-rake-routes-alias
adaf89c Merge pull request #4113 from apjanke/gnzh-remove-eval
dde5540 Merge pull request #4093 from apjanke/osx-fix-tab-for-iterm
1324e61 Merge pull request #4050 from mbologna/michelebologna_fix_git_prompt
763bf63 Merge pull request #3971 from moul/pr-scaleway
0bb3e01 Merge pull request #3940 from apjanke/diagnostic-dump-function
8cf88f2 Merge pull request #3911 from mbologna/git_remote_status_equal
baf1aa1 Merge pull request #3661 from ericbottard/GradleWrapperFix
3c782f7 Merge pull request #3582 from apjanke/fold-terminalapp-plugin-into-termsupport
4bd6c43 Merge pull request #3408 from spacewander/git-extras
93c6b5d Merge pull request #3078 from akoenig/gulpjs
5e45c16 Merge pull request #2751 from drm00/fix-openbsd-colorls
cc53e4c Merge pull request #2471 from phstc/capistrano-multistage
56cdec7 Merge pull request #3889 from leycec/compaudit
550573b Add emotty theme
dce052d Add emotty plugin
5cf0a01 Use local gradlew
8c5b948 chruby: donʼt try to execute .sh files before loading
bb10ad0 Remove unnecessary sandbox fn
a8a8bc3 Add simple Stack commands list
e8639c7 Update to current robbyrussell/oh-my-zsh master
797e1f9 [plugins/bgnotify] fix for iTerm2 notification clicks
6e0fcf8 Fixed atom plugin for cygwin users
c9af79f jira: add README, "emulate -L zsh", add "dumpconfig" action
6642a99 xcode: extend xcselv to list versions and do completion
22287d0 handle multiple paths in GOPATH
36fea45 svn plugin: urldecode repo info
0233979 Fixed broken git branch icon
dca4295 Make Readme much clearer and explain edits.
953e4d8 Make Linux compatible
19c0b18 fix url-quote-magic not working issue
9e9b790 golang: improve go doc completion
6170fa4 Added fedora plugin, based on dnf/yum plugin
82ae41c Reorder xcode plugin file
213f46a Add xcselv documentation in the README
5584aa0 xcode: add version-based xcselv()
86d881c Added aliases for --now commands
d95589d Add README for the xcode plugin
ec3694c Make simulator dependant of currently active dev directory
24bdd8e Replace xcsel function with just an alias
6a830f3 Return error if no xcode files where found
cbdad58 Use zsh globbing instead of ls + grep in xc function
38d25a3 Update taskwarrior completion to latest version (Jul 26 2015)
75844fe Put relevant documentation into README file
b42efeb Switch off line wrapping in case dots occupy extra line
6a8d406 Use prompt expansion sequence to color red the output
3976e04 Use proper if comparison
9c08641 Merge pull request #4299 from mcornella/refactor-frontend-search-plugin
7a63cca Fix aws plugin RPROMPT pollution
46ddd88 diagnostics: switch to shasum, filter sysinfo using lines
d009f24 gnzh theme: fix "eval" and related problems. Switch to normal zsh %F/%f prompt escapes to avoid "eval" and extra variables. Wrap whole thing in anonymous function so the existing `local` statements actually work. Then switch '...' to eager "..." so stuff actually works with local variables. And local-ize the remaining variables that are used only in prompt construction.
93b4a6c Merge branch 'master' into osx-fix-tab-for-iterm
82c76f6 Merge changes from #4241 into installer-portable-colors
502f08b Add Cygwin support to installer. * Balk at incompatible Windows/MSYS git * Test for chsh presence before trying to use it * Replace non-portable `[[ ... ]]` and `[ x = *pattern* ]` constructs
c7d782f Add the update from @mtwentyman phstc/dotfiles#1 to make it work for older versions of capistrano
30ef856 Fix maintainer line
9a7b2d7 Moved comments and credits from source to README
bec496f Display rvm-prompt output.
6d7c39a Added fancy-ctrl-z plugin
ef4a315 Fix invocation of gradlew
b08431f Add codeclimate autocomplete plugin
c481c62 Refactor and clear up README file
d982e12 Reorder alias definitions
663ac56 Prettify frontend help output and clean up logic
ff706f3 Add "help" method in "frontend-search" plugin
f1472f1 Simplify frontend-search function with assoc array
7f64092 [vim-interaction plugin] Escaping special chars in file names and simplifying code.
0532860 Merge pull request #4285 from nmaggioni/master
7366b56 Merge pull request #4268 from ZhengzhongZhang/patch-1
01b3783 Merge pull request #4302 from kyleheyne/patch-1
022a060 thefuck-alias -> thefuck --alias
ba5fd57 Merge pull request #3989 from eubenesa/master
69f098a Mentioning that you can set the theme to 'random' and it'll possibly bake you a pie.
a77e23a Merge pull request #4109 from zhiyelee/patch-1
da6ece4 Merge pull request #4117 from nextgenthemes/patch-1
eb12ec1 Merge pull request #4146 from perobertson/heroku-help
ac85faa Merge pull request #4171 from linux-china/master
c1bff77 Merge pull request #4195 from jerryling315/master
3f95377 Merge pull request #4198 from matjack1/gclean-gpristine
daabe2a Merge pull request #4205 from mcornella/fix-git-prompt-plugin
c10d5c8 Merge pull request #4244 from Gnouc/master
69a1715 Merge pull request #4239 from yous/fix-linux-gems
adff369 Merge pull request #4220 from andytank123/master
ccaaa99 Merge pull request #4241 from heartinpiece/master
2f6d85d Merge pull request #4248 from gabetax/rbenv_plugin_load_performance
51c3ab7 Merge pull request #4283 from hanschen/master
14e1f0c Merge pull request #4286 from RobinDaugherty/rand-quote-failure
a228604 Merge pull request #4249 from KrauseFx/patch-1
9c9699d Merge pull request #4250 from mcornella/fix-divide-by-zero-emoji
6346cc9 Merge pull request #4260 from fgibaux/patch-1
c084a13 Merge pull request #4259 from apjanke/jira-prefix-and-help-and-stuff
e59f4cb Merge pull request #4271 from loctauxphilippe/patch-1
9bb99e1 Merge pull request #4284 from gsklee/patch-1
50d3294 Merge pull request #4289 from moonfruit/master
869b104 Merge pull request #4292 from cxbig/master
b3f167d Merge pull request #3613 from apjanke/remove-sed-i
a7aed69 Merge pull request #4170 from black-roland/master
b1d57fa Merge pull request #4294 from willmendesneto/master
0a80889 Frontend-search: add search in npm website
acf6039 improved alias conflict between git flow & git fetch
0a2c31f Remove redundant semicolon
fe92ea9 installer: switch twitter link to https
d923ceb Updated with @mcornella suggestions
96aefd2 Remove code, not comment it out
241be2d Fix rand-quote failure when site is unreachable
058bbe4 General compatibility
a127c4f 'ip' command compatibility and much quicker external IP detection
8ab1b6d Update README.markdown
1bf5c58 Update autojump plugin for latest brew installation
76f4871 Added missing commands to Vagrant plugin, updated commands description
18ef1ee Merge remote-tracking branch 'robbyrussell/master'
aaf5c8f added apt-get autoremove in ubuntu plugin
1aeebf6 Update link
7c31c7a Bring bgnotify plugin up to date with t413/zsh-background-notify
a9daea1 plugin symfony2 sf2.7 compatibility fix
dc42e8d jira: add completion
7cf892e Add dashboard support and default-action configuration. Some refactoring.
ee4a423 Merge branch 'pr-4158' into jira-prefix-and-help-and-stuff
caf667f Merge branch PR 4132 into jira-prefix-and-help-and-stuff
5c8b0cc Add clipcopy() and clippaste() generic cross-platform CLI clipboard functions. Change copydir, copyfile, and coffee plugins to use them, instead of the Mac-only `pbcopy` command.
00eb465 Merge branch 'master' into fold-terminalapp-plugin-into-termsupport
47d19cc Add defensive `emulate -L zsh` to termsupport functions
96c34ce Add a deprecation comment.
9121f3e Merge pull request #4 from wkentaro/fix-git-prompt-plugin
c4ba306 Show tag name when detached status if possible
c66c3ae Fix graphical bug in cypher theme when return status is non-zero
3f83331 removes a trailing white space
be667a2 Remove obsolete comment
3c69874 Clean up gitstatus.py
45473c3 Fix for initial or detached status branch info
30bed07 Parse UTF-8 output from git status
94007f7 git-prompt: collect all git status information by one cmd
6ff53d1 Cleanup of git-prompt plugin file
1d133ff Cleanup the rest of gitstatus.py
5642014 Pull in simplified version from @wkentaro
6443626 Pull in latest version from olivierverdier/zsh-git-prompt
c6a5f6e Check that list_size value is not zero before division
88243b8 Use right variable name to avoid zero-length array
de47e2d Use https instead of http
daedfca reduce rbenv plugin load time by 150ms by removing additional brew call
d20c111 rvm plugin: Fix `gems` to work with GNU sed
0238301 Emoji plugin - Fix wrong string comparison
192de6b Merge pull request #4238 from wubaiqing/master
1605d82 Merge pull request #4234 from mcornella/fix-fbterm-autostart
7c60da9 Merge pull request #4233 from apjanke/apple-term-no-dupe-folder-in-title
2ecb17c Merge pull request #4230 from mcornella/revert-custom-early-load
20f536c Merge pull request #4228 from mcornella/fix-virtualenvwrapper-quotes
b8dbd9b Merge pull request #4217 from mcornella/standard-open-command
4c1eda1 Merge pull request #4216 from gkze/master
e3a01e5 Merge pull request #4212 from NAR8789/master
f6a2b97 Merge pull request #4203 from apjanke/title-protect-promptsubst
45d640b Merge pull request #4200 from lislon/systemd-patch
84ecc66 Merge pull request #4172 from AlexTalker/fix-typo
8c3d4a9 Merge pull request #4095 from kd35a/master
9626a36 Merge pull request #3654 from Qix-/patch-1
afc36e2 Merge pull request #2446 from fallwith/emoji_plugin
c45fff1 Merge pull request #2367 from andrew-dwyer/n98-magerun
d1ea849 Merge pull request #2106 from adepasquale/master
58d2f93 Check if Zsh is installed prior to installing Oh My Zsh
dcd95dd Changes quotes so that path will be set appropriately on multiple runs
9caa215 Add Baidu support to web-search plugin
be10229 Exit only if the fbterm session closed correctly
14b4ba8 Move urlencode/urldecode functions to core lib
be5dcb8 Check if fbterm is installed and use $TTY variable
17da983 termsupport: avoid repeated dir in window title in Terminal.app
3fe3ce8 Revert "Move custon *.zsh file sourcing up so that they can load plugins and other things that come after."
ccb0ae5 Add quotes to support folders with whitespace
c3fbe4d Add support for Docker images from custom registries
720fb5b Support for 'scw' command (Scaleway CLI)
269ae84 Removes unnecessary single quotes
b760a10 Use standard open command in fasd and lighthouse plugins
d1d06b5 Use standard open command in current plugins
2d0bfcf Implement cross-platform open function open_command()
cddfc3b style fixes
bd893ac Merge pull request #1 from dlsniper/terraform
cf78586 Update to latest Terraform release 0.6.1
7f3e614 Add terraform completion
9c74128 chucknorris: add missing line/quote delimiters
aac5523 Additional chpwd clobbering fix for dirpersist
084792b Don't clobber chpwd
e1353fc Adds npmE alias
d351c76 Also accept any forms of yes as an answer to the "do you want to update?" prompt
800af04 Add sc-launch as a shortcut for start & enable
90ea67e termsupport: protect title() with `emulate -L zsh`
daa04ba gnu-utils: add findutils (find,xargs,locate)
5554207 Add alias for "systemctl cat" and "systemctl edit"
fb8c446 Thefuck: fix global variable assignment
a2b574b git plugin: make gclean safer, introduce gpristine
96e5346 Merge branch 'master' of gh:robbyrussell/oh-my-zsh
2120b2e Add escaped home
3d5b343 Merge pull request #4122 from apjanke/venvw-treat-git-repo-as-venv-again
c83575d Add 'man' plugin.
b875df8 agnoster: speed up git prompt
f534b4b Thefuck: fixed compability with latest version
54e2740 Thefuck: replaced static alias with `eval "$(thefuck-alias)"`
8e8a133 Thefuck: combined with @cristim plugin. Code formating
b3ce0f3 Update README.markdown
fa25445 diagnostics: include output file name in dump output
803e5db improved the check for availability
0da9a4b fuck: added a basic plugin for https://github.com/nvbn/thefuck
e8caf22 Cygwin-specific "chsh" installation issue fixed.
da395c5 Secure umask enforced during installation.
cb55161 Completion insecurities handled on startup.
cacc6c3 replaced Om spelling so letters would not overlap
5a1dd14 removed incorrect Devanagari conjunct symbol at end of Om
a3f0439 Fix little typo that makes the statement useless.
e38455b Added conflict note (thefuck plugin)
b4a8cbf spring boot plugin
f838b56 spring boot plugin readme
cd2213a Thefuck plugin README
7a13a40 Added thefuck plugin https://github.com/nvbn/thefuck
e56c898 Merge pull request #1 from apjanke/emoji_plugin_3
9a39725 Remove redundant comments from the .zsh file (since they're in README now).
6d618ef emoji plugin: generate char map from Unicode UTR51 data files
a207a38 Merge pull request #4099 from moncho/master
afa3057 Add jira_url_help
46d1338 [theme] Fix color problem of steeef theme
ff8d799 Esc-esc now toggles sudo.
dcb175d Insecure completion handler added.
775ac3a The executable command on Mac OSX is 'ack' rather than 'ack-grep'.
b7617b3 Check for autoenv_init function before trying to source autoenv.
ffe8e54 add '--help' to heroku commands
bca720f diagnostics: include detailed OS version info if possible
3594e27 Nicer formatting
1e8196d passing the first argument with double quote
ad4675c Concise local variables declarations
b1772c5 More consistent curly braces variables
37f45eb Making variables local in jira plugin
1e99168 Changing indents to be more consistent (2 spaces)
88a30a3 Changing string comparison for more zsh-like
750de22 rails rake test
dff0374 adds an alias to search for the rails routes that pattern match a string
8cf6100 installer: use terminfo for portable escape sequences Do not use terminal visual effects if not connected to a terminal.
19ea867 install.sh: use portable printf instead of echo
b1da3bb Adding ability to add JIRA_PREFIX as an env variable (e.g. in .zshrc) and minor refactor to bash curly variable braces
3ea3384 Merge pull request #4041 from apjanke/fix-jira-prefix-comment-merge
c968346 Merge pull request #4106 from apjanke/venvw-no-realpath
c82deed agnoster: Protect Unicode esape sequences with local LC_* settings
f73e642 virtualenvwrapper: treat git repos as project roots again (instead of requiring a .venv customization directory) Change error output to more conventional OMZ format, so it's clear the plugin is for oh-my-zsh and not base zsh. Use `local` variables instead of manual unsetting.
a2e01e9 chucknorris: check for strfile dependency Gives a better error message than "command not found: strfile", because it's not obvious to many users that strfile is part of fortune. Also handles the weird /usr/sbin install location for strfile on Cygwin.
2e92ff8 Adds agar = apt-get autoremove
efb04d6 add git alias `gcam` -  git commit -am
c1f1f91 virtualenvwrapper: Replace "realpath" with portable zsh-native `:A` and `:h` modifiers
9813ff5 omz_diagnostic_dump: Add umask and $fpath listing. This helps catch issues with compinit and insecure directories.
0950f9c Plugin now uses completion script from docker-compose repo.
546b99a Use 'quit all' instead of counting needed quits
689b5ab osx: fix tab* functions so cd works in iTerm2, exit status is correct, and error messages are not discarded.
4cd281b agnoster: Define Powerline chars with escape sequence, and use same character on all platforms. Add clarifying comments. This makes everything consistent with the current Powerline-patched fonts definitions.
599831b Merge pull request #4058 from ncanceill/plugin-git
d24196c git plugin: fix ggl to avoid empty string see ohmyzsh/ohmyzsh#2790 (comment)
ed6645a Fix plugin/git ggpull and ggpush backward compatibility
68b792b Change to use omz git_prompt* functions
d0670aa Fix merge conflict for jira-prefix and jira add comment
ab18795 Merge pull request #4002 from aliafshar/patch-1
01e355f In addition to the already existing variables ZSH_THEME_GIT_PROMPT for behind, ahead and diverged remote, I added ZSH_THEME_GIT_PROMPT_EQUAL_REMOTE.
f66a54f Add missing space causing parse error.
8921902 Merge pull request #3852 from sachin21/add_alias_of_bundle_clean
5d214af Merge pull request #3858 from muchweb/muchweb-patch-1-editor
7daf740 Merge pull request #3874 from diraol/patch-2
0665ece Merge pull request #3973 from moul/pr-boot2docker-update
31b351c Merge pull request #3947 from mkwmms/patch-1
0a8ca6a Merge pull request #3918 from cbazin/master
b55effd Merge pull request #3919 from delphij/history-extendedglob
34d3680 Merge pull request #3838 from forivall/hyphen-insensitive
3a57076 Merge pull request #3813 from ziegs/fix_gradle_tasks
628c1fe Merge pull request #3848 from tristola/master
058def3 Merge pull request #3798 from dnixx/vundle-update
5fba46a Merge pull request #3821 from tresni/fix_minimal
c0b283c Merge pull request #3833 from coopermaruyama/master
6a340d9 Merge pull request #3988 from UserTaken/docker_update
ea5ff03 Merge pull request #3759 from mikeokner/master
04c301b Merge pull request #3975 from wernerb/patch-1
a1e722d Merge pull request #3976 from rodrigoargumedo/patch-1
422db48 Merge pull request #3986 from evilhamsterman/master
3d2bf22 Merge pull request #4001 from ivanfoo/fixOddCharsOnMac
a778463 Merge pull request #3929 from GunfighterJ/GunfighterJ-patch-sublime3
78bbf7a Merge pull request #3809 from ncanceill/easymerge
c6460ef Fixed odd chars on mac for agnoster theme
a7e7982 Add mix-fast plugin (similar to rake-fast)
55b1a2b Update _docker
3d670c0 Adding quotes to git completion discovery path
4cc0a26 A paver (Python build and configuration utility) plugin
26c7adf Revert "Added migration notification for rails plugin"
8b95bdb Added github in web_search plugin.
83295ec last-working-dir working with spaces in dirnames
d0b690b use local options to set no_equals before sourcing bash completion script
9eaf511 Merge pull request #3990 from ncanceill/plugin-git
f1a43da git plugin: new/changed aliases gaa was brought back by popular demand — see #3535 gap was replaced with gapa — see #3682 gdc was replaced with gdca — see #3977
e55d84f Add reference to bundler plugin issue in README
763cef8 Add `leaves` command to `brew` completion
4b76b74 remove trash command from osx plugin
cf3fb87 Added README.md file for ForkLift plugin
81da076 Added README.md file for atom plugin
a2d7d36 Added README.md file
c28b226 Fix README.md for sst command
0e35bd4 Plugins: vi-mode: Add first README file
0f96e8e Plugins: archlinux - add basic README.
e592968 Plugins: archlinux - use command -v in favor of which
e0ce876 Plugins: apache2-macports - add README
3f92985 Added references to the `external themes` wiki page.
8eb31a6 git plugin: fix ggpnp when called without argument also allow multiple arguments for ggp and ggl aliases
81eec40 * Added header with help and information * Moved git information to left prompt, with   support for:     * +ZSH_THEME_GIT_PROMPT_UNTRACKED, MODIFIED,     STASHED, ADDED, UPSTREAM STATUS     (if applicable) * Removed right prompt * Refactored following Google's guidelines for   scripts [ http://goo.gl/oJSXH2 ]     * Using local variables where applicable
1f008b4 Update Mix complition upto 1.0.4
02c2b74 Update aliases in laravel5.plugin.zsh file
266894c Update taskwarrior.plugin.zsh
1a4dc0d Renamed 'ss' alias to 'sstat' (to avoid collision with /bin/ss).
69dee65 Fixed typo in README
8791d7e Update bgnotify.plugin.zsh
980528f fix typo
af4ffe5 adb: add more commands
c838b9a Update README.markdown
fb5b83d Fixed jump pluging to display the right mark name on 'mark . '
563e105 Added README for mercurial plugin
4ab4300 Add git to prerequisites
23ac32d add help link to install zsh
4c409b0 sublime: Make subl a function so it can be called from functions in other modules
e8ac8b9 Added support for detecting Sublime Text 3 on Arch Linux
6bec3c6 Update history-substring-search README
83c3316 Added the tugboat autocompletion plugin
f513999 git plugin: make b local in gg* functions because it leaked, and led to #3991
6ff96da git plugin: fix error msg in gwip alias because git rm will fail when no files were deleted
6c29041 git plugin: global var for git command due to issues like #3962 until a proper plugin-loading system is implemented
a570f4b git plugin: bring back olg gg aliases by popular demand, see #3972
10c92cc Updates to ember-cli plugin
557dc09 More run and create options
2fb3265 Only load url-quote-magic if it is available. Partially fixes #3614
25df9f3 Disable globbing when executing `zeus rake` aliases to enable use of square brackets without escaping
2d40cc0 Add git_prompt_behind and git_prompt_exists
f21a672 add kitchen completion plugin from @petere
70c4a27 Added a possibility to display the remote branch and the number of commits you are ahead or behind
41104f8 Fix homebrew directory in aws plugin.
1653545 Recognize comments by default.
a28dbc8 Move custon *.zsh file sourcing up so that they can load plugins and other things that come after.
8652fd6 added comment functionality
de56943 Improved the `_git_time_since_commit` function.
729b19c Remove docker insert command
45e3f62 Add README for httpie plugin
3cc3084 Fix typo in $VCS_CLEAN_COLOR in adben theme
a98501d Grep bug in Agnoster
d686f8a generate with 'pod --completion-script' /cc thx to @ajmccall
a2f782e updated the command list to the latest cocoapod version (0.33.0)
6a1b832 No input for Update Check defaults to Yes
b7d041c Add rdrs method to reset the database(s)
5770ad5 Set AWS_PROFILE and use existing RPROMPT
3a77433 Add new boot2docker options
0bda651 Fix the spectrum_ls implementation in spectrum.zsh
8142261 Hide spectrum.zsh var values to avoid junky "set" output to terminal
af68165 Fix name of backed-up zshrc
afadb5a diagnostics: add zstyle state to output
82c1288 Include some bash rc files; improve formatting; more version info
4224c2a Merge pull request #3494 from AlexTalker/short-host
51e366e Merge pull request #3339 from Xophmeister/master
4c21557 Merge pull request #3320 from moul/pr-boot2docker
3e88e53 Merge pull request #2999 from nicorevin/master
dac07b2 Merge pull request #2736 from felipec/fc/gitfast
35c7b7b Merge pull request #1951 from Neal/extract-ipsw
cb89fcd Merge pull request #2836 from ptamarit/chsh-etc-shells
11c7baf Merge pull request #3651 from mcornella/batch-close-3
a449d53 Merge pull request #2790 from ncanceill/plugin-git
da21092 Merge pull request #3945 from nicolas-brousse/homebrew-plugin
1b625af Merge pull request #3952 from lbraun/patch-1
cffeefd Add installation instructions to README
cc63928 Round 3 of batch-closing obsolete issues
7f232f6 Respect $ZSH_CACHE_DIR when creating fasd's cache
7416018 Create new aliases for homebrew plugin
ea6adc5 Add omz_diagnostic_dump() to help with bug reports.
0c8cb11 Add sublime text 3 paths to check list
743be91 Don't leak extendedglob to global environment.
7b478d7 Detect the .venv in any parent directory of the current directory
4d0aca4 Differing upgrade and safe-upgrade
2449e41 Add file completion as optional argument
de76905 Fix awk command. \s only working in gawk
5b75cc7 Many updates to git plugin (see #2790)
9a5e1a0 Use $EDITOR
03b8c19 Fix 'chsh' by checking '/etc/shells' instead of using 'which'
d60d4f6 Add alias of bundle clean
83cf909 Added aliases for docker compose
d80918b add markdown extension to README
24552f0 Add readme and add new alias cfpc: paste+compile+copy
4512161 Update template zshrc with HYPHEN_INSENSITIVE
a315ddc typofix
8e8cdc0 Add coffeescript aliases: cf, cfc, cfp
66052e2 Add hyphen insensitivity
5c9c373 Fix minimal.zsh-theme's check for in_svn and add support for mercurial
551d68a Fixes gradle autocomplete. Regex did not include subproject tasks before.
7f0b577 Use the newest Vundle commands
cb0718c chucknorris: locate plugin dir using $0 instead of hardcoded $ZSH
88f42b6 Add support for variant "utf8" locale suffix spelling. Fix dumb bug in iconv call that would cause it to hang.
cb37c93 Remove unnecessary braces.
1246c3e install.sh: Replace nonstandard "sed -i" with sed + mv commands. Makes portable to systems whose sed lacks "-i", like OpenBSD.
5f90781 plugins/chucknorris: Add automatic updating of the compiled fortune data file. Use local variable for readability, and anonymous function to provide a scope for the local variable.
187cf07 For unspecified encodings, assume it's UTF-8 or compatible (e.g. ASCII) and muddle through without character encoding conversion.
702ff1c Add support for non-UTF-8 encodings in caller's locale.
8cf04ed Fix echo nothing if $SHORT_HOST doesn't exist.
3a18c33 In termsupport, use LC_CTYPE instead of LANG to enable byte-by-byte text processing. LANG doesn't seem to actually work.
a9e97e5 Remove terminalapp plugin and fold its implementation in to lib/termsupport.zsh. Replaces the redundant Terminal.app support that was recently added to termsupport.
f1d12c5 Add .ipsw to the extract plugin.
0c77e4b update git-extras plugin
663d432 Minor cosmetic fix to minimal theme
b7fcdc7 [tmux-cssh plugin] Initial version
95d5f2c [boot2docker plugin] Initial version
8f9a72a Moved plugin.
20edd5f gulp.js plugin
8a43d35 fix paclist() for non-english locales
eb06484 added emoji plugin to make it easy to display emoji characters in the terminal
1232485 Added ssh-like mosh window title
f516b7c add check for colored ls on openbsd. (retry of #2225)
5918d91 gitfast: back-port prompt fix
6a5c8fb gitfast: update to upstream v1.9.2
c9fbfc9 Uses `shipit` instead of `xcap`
16ae4e1 Adds support capistrano multistage completion
00b2cc6 New plugin for the n98-magerun Magento command line tool

git-subtree-dir: .oh-my-zsh
git-subtree-split: 5464fe3e4ad02a33243f42bcd8c91a287bc26185
tmitchell pushed a commit to tmitchell/oh-my-zsh that referenced this pull request Mar 31, 2016
tmitchell pushed a commit to tmitchell/oh-my-zsh that referenced this pull request Mar 31, 2016
NobbZ pushed a commit to NobbZ/oh-my-zsh that referenced this pull request May 15, 2016
NobbZ pushed a commit to NobbZ/oh-my-zsh that referenced this pull request May 15, 2016
habnabit added a commit to habnabit/dotfiles that referenced this pull request Jun 8, 2016
4400720 Merge commit '1b59a08e83397ed1990060eee235a54f93af1d51'
1b59a08 Squashed 'plugins/zsh-syntax-highlighting/' changes from dbd27cb..3dc5741
60c706d Merge https://github.com/robbyrussell/oh-my-zsh
192de6b Merge pull request #4238 from wubaiqing/master
1605d82 Merge pull request #4234 from mcornella/fix-fbterm-autostart
7c60da9 Merge pull request #4233 from apjanke/apple-term-no-dupe-folder-in-title
2ecb17c Merge pull request #4230 from mcornella/revert-custom-early-load
20f536c Merge pull request #4228 from mcornella/fix-virtualenvwrapper-quotes
b8dbd9b Merge pull request #4217 from mcornella/standard-open-command
4c1eda1 Merge pull request #4216 from gkze/master
e3a01e5 Merge pull request #4212 from NAR8789/master
f6a2b97 Merge pull request #4203 from apjanke/title-protect-promptsubst
45d640b Merge pull request #4200 from lislon/systemd-patch
84ecc66 Merge pull request #4172 from AlexTalker/fix-typo
8c3d4a9 Merge pull request #4095 from kd35a/master
9626a36 Merge pull request #3654 from Qix-/patch-1
afc36e2 Merge pull request #2446 from fallwith/emoji_plugin
c45fff1 Merge pull request #2367 from andrew-dwyer/n98-magerun
d1ea849 Merge pull request #2106 from adepasquale/master
9caa215 Add Baidu support to web-search plugin
be10229 Exit only if the fbterm session closed correctly
be5dcb8 Check if fbterm is installed and use $TTY variable
17da983 termsupport: avoid repeated dir in window title in Terminal.app
3fe3ce8 Revert "Move custon *.zsh file sourcing up so that they can load plugins and other things that come after."
ccb0ae5 Add quotes to support folders with whitespace
b760a10 Use standard open command in fasd and lighthouse plugins
d1d06b5 Use standard open command in current plugins
2d0bfcf Implement cross-platform open function open_command()
cddfc3b style fixes
bd893ac Merge pull request #1 from dlsniper/terraform
cf78586 Update to latest Terraform release 0.6.1
7f3e614 Add terraform completion
aac5523 Additional chpwd clobbering fix for dirpersist
084792b Don't clobber chpwd
90ea67e termsupport: protect title() with `emulate -L zsh`
5554207 Add alias for "systemctl cat" and "systemctl edit"
3d5b343 Merge pull request #4122 from apjanke/venvw-treat-git-repo-as-venv-again
b3ce0f3 Update README.markdown
a3f0439 Fix little typo that makes the statement useless.
e56c898 Merge pull request #1 from apjanke/emoji_plugin_3
9a39725 Remove redundant comments from the .zsh file (since they're in README now).
6d618ef emoji plugin: generate char map from Unicode UTR51 data files
a207a38 Merge pull request #4099 from moncho/master
3ea3384 Merge pull request #4041 from apjanke/fix-jira-prefix-comment-merge
c968346 Merge pull request #4106 from apjanke/venvw-no-realpath
f73e642 virtualenvwrapper: treat git repos as project roots again (instead of requiring a .venv customization directory) Change error output to more conventional OMZ format, so it's clear the plugin is for oh-my-zsh and not base zsh. Use `local` variables instead of manual unsetting.
c1f1f91 virtualenvwrapper: Replace "realpath" with portable zsh-native `:A` and `:h` modifiers
0950f9c Plugin now uses completion script from docker-compose repo.
546b99a Use 'quit all' instead of counting needed quits
599831b Merge pull request #4058 from ncanceill/plugin-git
d24196c git plugin: fix ggl to avoid empty string see https://github.com/robbyrussell/oh-my-zsh/pull/2790#issuecomment-112716330
ed6645a Fix plugin/git ggpull and ggpush backward compatibility
d0670aa Fix merge conflict for jira-prefix and jira add comment
ab18795 Merge pull request #4002 from aliafshar/patch-1
f66a54f Add missing space causing parse error.
8921902 Merge pull request #3852 from sachin21/add_alias_of_bundle_clean
5d214af Merge pull request #3858 from muchweb/muchweb-patch-1-editor
7daf740 Merge pull request #3874 from diraol/patch-2
0665ece Merge pull request #3973 from moul/pr-boot2docker-update
31b351c Merge pull request #3947 from mkwmms/patch-1
0a8ca6a Merge pull request #3918 from cbazin/master
b55effd Merge pull request #3919 from delphij/history-extendedglob
34d3680 Merge pull request #3838 from forivall/hyphen-insensitive
3a57076 Merge pull request #3813 from ziegs/fix_gradle_tasks
628c1fe Merge pull request #3848 from tristola/master
058def3 Merge pull request #3798 from dnixx/vundle-update
5fba46a Merge pull request #3821 from tresni/fix_minimal
c0b283c Merge pull request #3833 from coopermaruyama/master
6a340d9 Merge pull request #3988 from UserTaken/docker_update
ea5ff03 Merge pull request #3759 from mikeokner/master
04c301b Merge pull request #3975 from wernerb/patch-1
a1e722d Merge pull request #3976 from rodrigoargumedo/patch-1
422db48 Merge pull request #3986 from evilhamsterman/master
3d2bf22 Merge pull request #4001 from ivanfoo/fixOddCharsOnMac
a778463 Merge pull request #3929 from GunfighterJ/GunfighterJ-patch-sublime3
78bbf7a Merge pull request #3809 from ncanceill/easymerge
c6460ef Fixed odd chars on mac for agnoster theme
a7e7982 Add mix-fast plugin (similar to rake-fast)
55b1a2b Update _docker
3d670c0 Adding quotes to git completion discovery path
4cc0a26 A paver (Python build and configuration utility) plugin
26c7adf Revert "Added migration notification for rails plugin"
8b95bdb Added github in web_search plugin.
83295ec last-working-dir working with spaces in dirnames
d0b690b use local options to set no_equals before sourcing bash completion script
9eaf511 Merge pull request #3990 from ncanceill/plugin-git
f1a43da git plugin: new/changed aliases gaa was brought back by popular demand — see #3535 gap was replaced with gapa — see #3682 gdc was replaced with gdca — see #3977
e55d84f Add reference to bundler plugin issue in README
763cef8 Add `leaves` command to `brew` completion
4b76b74 remove trash command from osx plugin
cf3fb87 Added README.md file for ForkLift plugin
81da076 Added README.md file for atom plugin
a2d7d36 Added README.md file
c28b226 Fix README.md for sst command
0e35bd4 Plugins: vi-mode: Add first README file
0f96e8e Plugins: archlinux - add basic README.
e592968 Plugins: archlinux - use command -v in favor of which
e0ce876 Plugins: apache2-macports - add README
3f92985 Added references to the `external themes` wiki page.
8eb31a6 git plugin: fix ggpnp when called without argument also allow multiple arguments for ggp and ggl aliases
81eec40 * Added header with help and information * Moved git information to left prompt, with   support for:     * +ZSH_THEME_GIT_PROMPT_UNTRACKED, MODIFIED,     STASHED, ADDED, UPSTREAM STATUS     (if applicable) * Removed right prompt * Refactored following Google's guidelines for   scripts [ http://goo.gl/oJSXH2 ]     * Using local variables where applicable
1f008b4 Update Mix complition upto 1.0.4
02c2b74 Update aliases in laravel5.plugin.zsh file
266894c Update taskwarrior.plugin.zsh
1a4dc0d Renamed 'ss' alias to 'sstat' (to avoid collision with /bin/ss).
69dee65 Fixed typo in README
8791d7e Update bgnotify.plugin.zsh
980528f fix typo
af4ffe5 adb: add more commands
c838b9a Update README.markdown
fb5b83d Fixed jump pluging to display the right mark name on 'mark . '
563e105 Added README for mercurial plugin
4ab4300 Add git to prerequisites
23ac32d add help link to install zsh
4c409b0 sublime: Make subl a function so it can be called from functions in other modules
e8ac8b9 Added support for detecting Sublime Text 3 on Arch Linux
6bec3c6 Update history-substring-search README
83c3316 Added the tugboat autocompletion plugin
f513999 git plugin: make b local in gg* functions because it leaked, and led to #3991
6ff96da git plugin: fix error msg in gwip alias because git rm will fail when no files were deleted
6c29041 git plugin: global var for git command due to issues like #3962 until a proper plugin-loading system is implemented
a570f4b git plugin: bring back olg gg aliases by popular demand, see #3972
557dc09 More run and create options
2fb3265 Only load url-quote-magic if it is available. Partially fixes #3614
25df9f3 Disable globbing when executing `zeus rake` aliases to enable use of square brackets without escaping
2d40cc0 Add git_prompt_behind and git_prompt_exists
f21a672 add kitchen completion plugin from @petere
70c4a27 Added a possibility to display the remote branch and the number of commits you are ahead or behind
41104f8 Fix homebrew directory in aws plugin.
1653545 Recognize comments by default.
a28dbc8 Move custon *.zsh file sourcing up so that they can load plugins and other things that come after.
8652fd6 added comment functionality
de56943 Improved the `_git_time_since_commit` function.
729b19c Remove docker insert command
45e3f62 Add README for httpie plugin
3cc3084 Fix typo in $VCS_CLEAN_COLOR in adben theme
a98501d Grep bug in Agnoster
d686f8a generate with 'pod --completion-script' /cc thx to @ajmccall
a2f782e updated the command list to the latest cocoapod version (0.33.0)
6a1b832 No input for Update Check defaults to Yes
b7d041c Add rdrs method to reset the database(s)
5770ad5 Set AWS_PROFILE and use existing RPROMPT
3a77433 Add new boot2docker options
4224c2a Merge pull request #3494 from AlexTalker/short-host
51e366e Merge pull request #3339 from Xophmeister/master
4c21557 Merge pull request #3320 from moul/pr-boot2docker
3e88e53 Merge pull request #2999 from nicorevin/master
dac07b2 Merge pull request #2736 from felipec/fc/gitfast
35c7b7b Merge pull request #1951 from Neal/extract-ipsw
cb89fcd Merge pull request #2836 from ptamarit/chsh-etc-shells
11c7baf Merge pull request #3651 from mcornella/batch-close-3
a449d53 Merge pull request #2790 from ncanceill/plugin-git
da21092 Merge pull request #3945 from nicolas-brousse/homebrew-plugin
1b625af Merge pull request #3952 from lbraun/patch-1
cffeefd Add installation instructions to README
cc63928 Round 3 of batch-closing obsolete issues
7f232f6 Respect $ZSH_CACHE_DIR when creating fasd's cache
9c75551 Merge pull request #3887 from jadb/add-cakephp3-plugin
7416018 Create new aliases for homebrew plugin
0c8cb11 Add sublime text 3 paths to check list
743be91 Don't leak extendedglob to global environment.
7b478d7 Detect the .venv in any parent directory of the current directory
6504a2d Add CakePHP3 plugin
4d0aca4 Differing upgrade and safe-upgrade
2449e41 Add file completion as optional argument
de76905 Fix awk command. \s only working in gawk
5b75cc7 Many updates to git plugin (see #2790)
9a5e1a0 Use $EDITOR
03b8c19 Fix 'chsh' by checking '/etc/shells' instead of using 'which'
d60d4f6 Add alias of bundle clean
83cf909 Added aliases for docker compose
d80918b add markdown extension to README
24552f0 Add readme and add new alias cfpc: paste+compile+copy
4512161 Update template zshrc with HYPHEN_INSENSITIVE
1400346 Merge pull request #3825 from kennedyoliveira/master
cabb8f7 Merge pull request #3814 from willmendesneto/frontend-search-add-autocomplete
a315ddc typofix
8e8cdc0 Add coffeescript aliases: cf, cfc, cfp
66052e2 Add hyphen insensitivity
2dbf995 Fixing some issues where show repeated weird values, and fixed commands that need the container autocomplete without being running, like start, now it autocompletes showing all the containers so you can start without knowing the right name
5c9c373 Fix minimal.zsh-theme's check for in_svn and add support for mercurial
590d393 Add autocomplete for frontend-search
551d68a Fixes gradle autocomplete. Regex did not include subproject tasks before.
ff4663a Merge pull request #3802 from willmendesneto/patch-1
05f2ad3 fix stackoverflow url in search
b4729d3 Merge pull request #3792 from willmendesneto/frontend-search-add-new-repositories
7f0b577 Use the newest Vundle commands
eea77b7 Add stackoverflow link
75b9030 Merge pull request #3731 from NHDaly/patch-1
8301040 Merge pull request #3683 from jameswomack/fix_3640
d4918ae Fixed Typo.
1b6af54 Merge pull request #3692 from XerWandeRer/master
b28abd5 Merge pull request #3694 from houjunchen/django
0dde994 [Modify] Update django.plugin.zsh for Django 1.7.6
a414b5e Update _adb
c58c623 Use camelCase for npm aliases
e55c715 Merge pull request #3635 from wyldphyre/master
01ec37e Added missing 'stt' command alias
2e1b964 Add README.md file
6ddd44a Merge pull request #3622 from koddsson/notifier-plugin-if-order
656db4d Merge pull request #3623 from uberspot/nmap_feat
1308515 Re-order OS detection if..else statement.
0dc7b5c add nmap plugin with some aliases for scan modes
31e29e1 Merge pull request #3625 from tandrup/master
1dcc81c Merge pull request #3630 from designorant/grunt-plugin-update
8b45118 Update Grunt plugin to 0.1.2
7fc47e7 Fixing spaces in title and message given to bgnotify on OS X
677acc3 Merge pull request #3486 from ckesc/master
bd792f0 Merge pull request #3444 from lululau/httpie-pr
9aa11c3 Merge pull request #3458 from rexk/feature/go-plugin-upgrade
86a41a8 Merge pull request #3480 from dskecse/add-rails-rdms-alias
d28917d Merge pull request #1999 from akatov/carton
78cfe75 Merge pull request #3301 from t413/master
aa9325a Merge pull request #3025 from DanielOaks/ys-newness
b91ca24 Merge pull request #3394 from zghember/master
4353162 Merge pull request #2407 from mgalgs/gmt-compdef
237304a Merge pull request #2346 from zsiciarz/master
2728543 Merge pull request #3508 from joshtronic/patch-1
07ebfd8 Merge pull request #3497 from hsingh23/patch-1
9c0b643 Merge pull request #3509 from joshtronic/patch-2
ff6ca9b Merge pull request #3538 from TheLinuxKitten/grep-if-color
e2fd99a Merge pull request #3526 from DariusPHP/master
be63e8b Merge pull request #3518 from mfaerevaag/master
6809b42 Merge pull request #3541 from agios/tmuxinator
983c0c9 Merge pull request #3615 from mopsfelder/hgprompt
49a3dd1 Merge pull request #3608 from idjaw/master
c4c3d32 Merge pull request #3544 from tejasbubane/add-all-alias-in-git-plugin
7649c29 Merge pull request #2009 from akatov/grunt
9d0a9b8 Merge pull request #3559 from WarFox/feature/mvn-plugin-src-docs
d80f620 Merge pull request #3561 from jakobj/master
7c2d84f Merge pull request #3569 from avalent/master
2f23f33 Merge pull request #3577 from jameswomack/npm_convenience_aliases
377b1f9 Merge pull request #3580 from LukasDoe/master
e1bcd77 Merge pull request #3601 from nextgenthemes/master
57ed0cd Merge pull request #3598 from roderickrandolph/master
56bc1c3 Merge pull request #3609 from craigp/added_local_hex_to_mix_plugin
43bdea4 Removing say() function in perl plugin so that it doesn't overwrite OSX comand line utility. Closes #2562
ce607d3 Adding keystrong return to oascrupt per suggestion by @enzzzy. Fixes #2913.
6713aef Merge branch 'master' of github.com:robbyrussell/oh-my-zsh
aa16e18 Updating histoby-substring-search README to instruct user to load plugins via .zshrc. Closes #1832.
7b71dcc Merge pull request #3610 from bderrly/zle-active-check
d7837c6 Shorten the zle check and reset-prompt into one line.
efd6d4d Merge pull request #3597 from apjanke/no-dot-in-cdpath
a1de65e Removing  --no-check-certificate from README
5cd3182 Missed a few textile formatting spots
caac64c Few copy edits to README
8f1741d Moving README to markdown... and taking first steps at reorganizing it. Also updated the LICENSE to reflect 2015.
0a99ca0 plugins: mercurial: Update the order prompt vars are displayed
77140a2 Merge pull request #3603 from alx741/master
bc8abe5 Verify zle is active before trying to reset-prompt.
9bf1960 Merge pull request #3607 from mcornella/drop-insecure-url
aff01d9 Update readme.md
3936763 Markdown bolds to capital letters
8ce1245 added the 'mix local.hex' command to plugin completions
e10470f Adding ssh-config to vagrant plugin autocomplete. Was missing
152a751 Revert usage of install.ohmyz.sh URL, until HTTPS support.
223197b Merge pull request #3533 from maff/chucknorris-fortune
8d561aa Merge pull request #3573 from mcornella/fix-taskwarrior-first-completion
dcc08b0 Merge pull request #3545 from BilalBudhani/ember-cli-plugin
9a58e8d Merge pull request #3578 from ctroncoso/patch-1
67fff60 Merge pull request #3589 from miguxbe/master
84a318b Merge pull request #3590 from voronkovich/master
5b429b6 Merge pull request #3596 from kossmac/master
24ebf9c Merge pull request #3591 from zmwangx/ls-variants
c5e8713 Merge pull request #3594 from pi0/master
33900df PLUGINS: vi-mode: allow ctrl-h, ctrl-?, ctrl-w for char and word deletion
099246d PLUGINS: vi-mode: allow ctrl-p, ctrl-n for history navigation
d8b9932 Update readme.md
660eeb1 Update readme.md
3120b9a Update readme.md
f50b3fe Create ubuntu plugin, based on debian plugin.
6b29aab Create readme.md
8b5950b Fix: "\s" is a gawk-specific regexp operator.
23d4e7e Merge pull request #1 from roderickrandolph/fix-return-status-arrow-color
46e6e2e Fixes incorrect prompt arrow color
6ccf67a Do not put explicit dot in $cdpath, since it causes problems on Cygwin due to an underlying zsh bug.
cd36ded added stats command to docker plugin
7c73a3a Laravel 5 support
2790a5e Bring back -h option to ls variants
8cf04ed Fix echo nothing if $SHORT_HOST doesn't exist.
b39dbec Fix tmuxinator completion for symlinked dirs
ec9525b Add initial JHBuild plugin support
7c00bcd Modify theme to optimize the usability, when you use solarized dark as shell color scheme.
4b20bfe Fix first-tab completion in task command
5ee5403 Merge pull request #3572 from mcornella/fix-apple_terminal-newtab-again
3704fbb Extract CWD notifier back out of auto-title hooks
68955f1 docker containers based on defined names
6967393 Add convenience aliases for installation of npm modules
f1d12c5 Add .ipsw to the extract plugin.
3b6a695 Merge branch 'master' of github.com:avalent/oh-my-zsh
3ba10ad Added cab autocompletion to the cabal plugin.
ef7e53a Merge pull request #3568 from mcornella/apjanke-title-disable-check
6aa9720 Merge pull request #3567 from mcornella/bsandrow-topic/virtualenvwrapper-ubuntu
2f76919 Merge pull request #3563 from mcornella/fix-unicode-locale
0edf416 Temporarily delete over-engineered solution
448e966 Fix for bad LC_CTYPE entry
732c7b8 Simplify adding workon_cwd to chpwd hook
b629116 Organize error checking in virtualenwrapper plugin
4161aa4 Fixing virtualenvwrapper plugin for Ubuntu (and Debian)
8830f65 Merge pull request #3467 from mcornella/fix-composer-plugin
f0bbd30 Merge pull request #3443 from mcornella/better-web-search-plugin
aab7532 Merge pull request #3566 from mcornella/pfault-master
9b8e88d Merge pull request #3483 from ai/fedora-not-found
d2667bd Merge pull request #3353 from mizabrik/master
17216be Merge pull request #3143 from roramirez/theme-linux
5217716 Merge pull request #3479 from faceleg/patch-1
49b4e67 Merge pull request #3547 from martong/vi_mode_trapwinch
0a0a278 Merge pull request #3413 from mcornella/fix-dircycle-plugin
412a92e Merge pull request #3141 from muggenhor/sudo-maintain-cursor-pos
ff823f8 Merge pull request #3564 from mcornella/LFDM-cleaning_lib
2e41d06 Use quoted $TERM value everywhere
b7e5dd3 Quick-fix code style
4fc6dcc term: Move DISABLE_AUTO_TITLE check to hooks
f04246a rkj-repos: code cleanup and updated with functions from lib/git.zsh (thx mcornella)
c3940cf Fixed breakage in new git repo without commits
6fb8661 Remove composer.json file requirement
ef220f0 Add aliases for composer global
5f4e8e5 Allow completion for 'composer.phar', not only 'composer'
0cc3afe Fix get command list for recent composer versions
02d7568 Force using https in Yandex search engine
e8daf81 Fix yahoo search URL in web-search plugin
c458850 Add support for cygwin open in web-search plugin
adaea31 Silence nohup output in web-search plugin
80ba54a Add Yandex support to web-search plugin
80d856e Clean up web-search plugin logic to allow easier changes
2193135 Clean up appearance lib file and redundant `colors` calls in other files
51946eb Implement deletion of sl alias as per #3055
4b4292a Fix a typo
724143c Deletes dot aliases from common-aliases.
83c4e06 Moves a bindkey call from misc to key-bindings.
101149b Moves remaining aliases to misc and deletes file.
d33b0aa Refactors history alias and moves it.
ace9884 Pushes autoenv code to its plugin.
25b1cd6 Brings all directory stuff to directories.zsh
282240b Account for iTerm2 sent keys in dircycle plugin
999bab1 Emulate zsh in zlewidgets instead of static setopt command
e93fd93 Run pushd command directly and trigger prompt redraw
5fe22fc Clean up and fix +1/-0 syntax to work as expected
13e5afe Merge pull request #3164 from nailor/fix-deactivate-bug
811f1f9 Merge pull request #3329 from capeterson/master
935f191 Merge pull request #3419 from mcornella/fix-cake-target-cache
c3eb548 Merge pull request #3525 from apjanke/term-pwd-in-precmd
349493a Fix for ant targets with leading dash
013b2bf Change ant target enumeration
7f636ba Backwards logic in newer check.
6bccb1a removed superfluous vcs_info_msg in trapd00r theme
fc606d9 Added alias for downloading maven dependencies' sources and javadocs
2e0da68 add chucknorris plugin
7de44db Added trapwinch to vi-mode plugin.
431faa9 Creates Ember-cli plugin and Adds its aliases
8cb97d6 Add alias for git add --all
be70280 Reword comments on termsupport internal functions.
f2130fa Test if --color=auto is a valid option for grep
8ccfc3d Removing 'local' usage to prevent issue when installed with antigen
e604587 Switch newer-than logic to get the desired behavior
550ccca Merge pull request #3478 from stephenrjohnson/custom_cache_dir
1ac2f86 Merge pull request #3493 from NicholasTD07/patch-1
147ebd6 Merge pull request #3490 from lmartins/master
65afcb7 Merge pull request #3489 from sunlight07/patch-1
c4d3de1 added server:run alias
5f79ab5 Move chpwd update output from chpwd hook to precmd to avoid contaminating script/function output
4533c7a [wd] Update to v0.4.1
49549d9 Update git-hubflow.plugin.zsh
fd3a348 Update git-flow.plugin.zsh
b2f8764 Adds completions to wp-cli plugin
5cb0ed9 Fast installation time by shallow copying git repo
3abc2a4 Fix Plugin commands
3c49983 Update django.plugin.zsh
5b90092 Sublime Text plugin: added sst alias for sudo run sublime
f997ed7 Add Fedora support for command-not-found plugin
a55a313 Add rdms alias to rails plugin
c78277f Merge pull request #3429 from apjanke/termsupport-apple-chpwd
ceb42ec Update /home/srj/.oh-my-zsh/cache references
bf7b916 Allow custom cache dir
833e6f5 virtualenvwrapper: Deactivate only if in virtualenv
8105d4a Merge commit '175b4a807383530aa75145b5b6fdedb3ce1f11f2'
8790fa3 go plugin upgrade for version 1.4
957564a Add completion for httpie
7295e38 termsupport: add chpwd hook for setting pwd in Apple Terminal.app
175b4a8 Merge pull request #3407 from rawberg/mira-theme
da1ca88 Merge pull request #3404 from ekaragodin/master
0c47d8c Merge pull request #3146 from typekpb/tmux-aliases
304e8f0 Merge pull request #3338 from eripa/chruby_fix
b0ad3d7 Merge pull request #3352 from benjaoming/virtualenvwrapper_workon_unset
fe2ccb3 Merge pull request #3397 from peteches/master
c63f27a Merge pull request #3412 from mcornella/feltnerm-patch-1
5167450 Merge pull request #3424 from bergvandenp/docker_exec
4a56c6b Merge pull request #3303 from iml/brew-update
1b2d7fd Merge pull request #3362 from emarashliev/master
dc9af89 Merge pull request #3372 from bbiao/compatible-with-new-autojump
9b35203 Merge pull request #3409 from unixorn/prevent-variable-clobbering
9e794a5 Merge pull request #3410 from Superbil/master
cd845a1 Merge pull request #3417 from stof/patch-1
9e5f0f0 added exec command to docker plugin
16d0768 Quote path in case $HOME has a space in it.
f7deb52 Update the list of Heroku Postgres commands
8355359 fix(tools/check_for_upgrade): Don't source profile
7931d5c Fix aws.plugins.zsh check rule
1978a09 Revert PR #3359 as this is breaking stuff for many folks. Need to rethink how we handle system defaults differently on this
00ff1bb Updated Yii2 command completion
02d6477 added node- before node version for consistency
77da209 mira theme shows active node, ruby and java versions
7488e9b Add yii2 readme
0a96bb1 Merge pull request #2094 from frantzmiccoli/phing-fix
fe75c96 Merge pull request #3399 from ryan-robeson/add-itunes-shuffle-command-to-osx-plugin
77bfdc6 Merge pull request #3395 from vmalloc/patch-1
07c013c Merge pull request #3389 from bubenkoff/add-current-bookmark-rkj-repoz
885e818 Merge pull request #3359 from unixorn/dont-clobber-histsize-and-savehist
eced76e Merge pull request #3326 from DanielFGray/master
311f363 Merge pull request #3403 from mcornella/fix-grep-library
8efdbef Merge pull request #3366 from ratza/master
6fd0b73 Merge commit '141c2e593401f245a9f9bb0799ada8bf14b677d7'
08b9f8d Added Yii2 command completion
dd27087 Change to alias and remove deprecated GREP_COLOR
7118431 Tidy up the grep.zsh library
0190eb0 Use unaliased grep in flag check
cf586b5 Ignore .bzr folders in grep too
0bd3c99 Extract VCS folders definition to avoid repetition
141c2e5 Merge pull request #3344 from wrboyce/custom-lib
43a2e24 Add itunes shuffle command to OSX plugin.
1d2c1e8 Fixed output issues webith websearch plugin.
9677cfb Fix dircycle plugin
6f70d28 Update theme "jispwoso" to support ret status and git
9bab8cc add current bookmark to rkj-repos theme
ed029f1 allow overriding lib/*.zsh in custom/lib
a19d1d1 autojump installed from github has mv the autojump.zsh to $HOME/.autojump/share/autojump/autojump.zsh
011f25d Fixed command autocomplete for Symfony 2.6.x
575bb91 Added Xcode alias for deleting Derived Data.
5bf7157 Existing code indents with spaces, not tabs, conform.
1ebc98b Don't clobber HISTSIZE or SAVEHIST if they're already set
c6a8b2e Save ZSH path in newly created .zshrc
4b05e54 Throw an error message when $WORKON_HOME is not set
43aa378 Merge pull request #2448 from gawashburn/master
5acfdf5 Merge pull request #2871 from wrboyce/extract-pigz
4610add Merge pull request #3092 from MWers/aws-brew-issue
4c4f47a Merge pull request #3265 from thii/fix-yosemite-broken
60a41a8 Merge pull request #3283 from jaapz/master
9f4dfc0 Merge pull request #3309 from jarinudom/superjarin
db8eacf use pigz if available in extract plugin
663d432 Minor cosmetic fix to minimal theme
1dfadc7 Fix chruby plugin to not complain if chruby is *not* installed
b6b1dd3 Fix Yosemite broken zsh where $PATH var does not get appended correctly.
0222e77 Merge pull request #3333 from mcornella/fix-git-hide-dirty
6a496d2 Merge pull request #3323 from alfss/fix-pj
a301f56 Switch back to oh-my-zsh.hide-dirty setting again
0c04470 [~] fix plugin pj
00ec11d ignore any grep aliases that might be defined
923d2c8 Fix autojump script to support Nix installations
95d5f2c [boot2docker plugin] Initial version
d0f3fb3 Merge simplified superjarin theme
fd69c34 Add screenshots to readme
98fc8dd Fix for OS X when no window id is returned (like on the desktop)
8bd8597 Remove deprecated brew commands, update core commands
cbec1d7 Add window ID fallback for windows.
3d376bb Fix renamed method issue.
df5b09e Merge pull request #3299 from apoxa/fix-profiles
1125333 Fixes the profiles-plugin
7f75bb9 Merge pull request #3223 from mcornella/use-special-vars
adafe27 add cygwin windows support with notifu, add to readme
0b0cc2c Fixed math on linux, removed debug echo.
e16d3e4 Add bgnotify plugin, a cross-platform background notifier!
95d795e Change all hostname calls for $HOST or $SHORT_HOST
4310a15 Change all pwd calls for $PWD variable
74177c5 Change all whoami calls for $USER variable
7034b01 Merge pull request #3213 from nikhgupta/features/fix-emoji-clock
8a51bfd Merge pull request #3108 from mfaerevaag/master
35f1a23 Merge pull request #3131 from halilim/remove-j-alias
510055a Merge pull request #3081 from pavoljuhas/master
6118446 Merge pull request #2974 from elliottwilliams/patch-1
e423ca0 Merge pull request #2976 from shammellee/patch-1
57ff83d Merge pull request #2946 from moinakg/master
0f7e5e4 Merge branch 'simonbuchan-master'
81004df 2928 merge conflict
1b65c55 Merge pull request #2959 from crkochan/fix_rake_command
4eff792 Merge pull request #2648 from dfarrell07/master
160abc9 Merge pull request #2323 from michaelorr/slow-git-fix
2984d2d Merge pull request #2168 from riyad/modernize-virtualenv
ed01122 Merge pull request #1604 from franklouwers/master
548b9c4 Merge pull request #3224 from Neal/xcode-simulator-fix
ba6bf24 Merge pull request #3230 from willmendesneto/fix-compass-doc-search
c0905fd Merge pull request #3226 from mcornella/fix-plugin-gitignore
eae7005 Added VIRTUAL_ENV_DISABLE_PROMPT to steeef.zsh-theme
b6012bc Update to the upstream smart-change-directory.
071de5f Make the simulator alias work with older Xcode versions as well.
b452caf Follow-redirect and silent mode curl throughout gitignore
04d1428 Fix gitignore curl, should follow redirects
69a0b28 Fix misspellings in gitignore plugin
b9a11b1 fixed URL on github.io
7f07fac Merge pull request #3252 from mcornella/fix-auto-named-dirs-prompt
36e05e9 Don't set auto_name_dirs because it messes up prompts
9f801ff [wd] fix space in path
6f1eb08 Fix error using compass search alias
d794a50 Update path for the iOS simulator.
71ee0d7 added support for GNU version of `date`
3a39732 Change to epoch target in days instead of seconds.
90762ee Convert epoch_target from days to seconds.
5f38a53 Update Solaris changes to use OSTYPE and zsh datetime  module.
b0013ce remove path not found for linuxonly theme
eb05497 additional tmux aliases
1e7c674 sudo: maintain cursor position
7a5d68c Remove j alias for autojump
b509385 [wd] Minor bug fix in show command
6855dd4 [wd] New minor version (v0.4)
96e4e5d Merge pull request #2811 from stucki/multiple-vagrant-machines
4bba11d Merge pull request #2744 from docwhat/ostype-not-uname
ffe8ce5 Merge pull request #3095 from robbyrussell/revert-1504-master
5e25913 Revert "Exit early from git plugin if not in git repo."
87fb118 Changed brew cmd to properly report if awscli is installed via homebrew
ae901fa Support dynamically defined Vagrant machines
a8ef111 Merge pull request #3072 from clippit/patch-1
dd644a1 Merge pull request #2743 from docwhat/issue-2155-scutil
ca0331d Merge pull request #3087 from hacfi/symfony
8d2dd8c Symfony2 plugin autocomplete for app/console and bin/console
677d8b1 Symfony2 plugin look for files only
ed6c2c9 Symfony2 plugin use first console found
da94f45 Merge pull request #3073 from ajhenriques/master
d21e3ee Merge pull request #2996 from joshmedeski/master
eca6dca Merge pull request #3071 from halilim/patch-4
003f367 Merge pull request #3070 from stucki/vagrant-vm-list-fix
a796a67 Merge pull request #3077 from robbyrussell/revert-3068-patch-1
a910aef Revert "Add Composer's local binaries to PATH"
7a53166 Merge pull request #3076 from robbyrussell/revert-2766-add-contributing-file
39fb6c9 Revert "Add a CONTRIBUTING file to instruct people on issues and pull requests"
fdba0f4 Merge pull request #3069 from johnjohndoe/feature/adb-autocompletion
b8e10ca add wp-cli plugin readme
f0d5cfd add git difftool alias (gdt)
9c1255d fix missing add-zsh-hook in pygmalion.zsh-theme
2b83acc Use the library function for ruby prompt
e7fdb02 Improve support for Vagrant VM definitions
65f97a6 Add README.md for adb-autocompletion plugin.
23bbf3c Merge pull request #2986 from Guerki/master
6cb8b72 Merge pull request #2995 from admpsktt/patch-2
56d9acf Merge pull request #3044 from alexshd/patch-1
99fde07 Merge pull request #3000 from bigtiger/add-git-add-patch
1f9b24e Merge pull request #2997 from cchacin/master
4438acb Merge pull request #3004 from admpsktt/patch-3
eae6c38 Merge pull request #3010 from celsomiranda/patch-1
244a6f2 Merge pull request #3011 from cherrry/master
58491bd Merge pull request #3012 from abstractj/git-gpg-signatures
74e7510 Merge pull request #3014 from allister-lundberg/git_alias_gitbranchremote
c1cd9cb Merge pull request #3049 from strycore/master
fc365f5 Merge pull request #2963 from bezoerb/symfony2-autocomplete-fix
5e842cf Merge pull request #3041 from takac/master
6908827 Merge branch 'master' of github.com:robbyrussell/oh-my-zsh
671bd0c Link to swag in installer... shameless profiting
9f8d7d8 Adding link to the store for swag in upgrade process
c22658e Merge pull request #3059 from chrisfsmith/feature/bbedit
b88d682 Merge pull request #3060 from chrisfsmith/feature/marked
3577fba Merge pull request #3058 from chrisfsmith/feature/textastic
c207c83 Merge pull request #1755 from johnjohndoe/feature/adb-autocompletion
9bf5b90 Adding README.md and renaming plugin
c07bf98 Merge pull request #1504 from jediant/master
d7f77f8 Adding README.md
a8dad6f Adding README.md
6caed46 Merge pull request #2941 from mcornella/fix-pass-completion
3e30b4d Merge pull request #2922 from ncanceill/easymerge
fcd55f3 Merge pull request #2845 from mfaerevaag/master
958c8f4 Merge pull request #3045 from fornwall/remove-usr-bin
be578d9 Merge pull request #3053 from jingweno/patch-1
a5cbd31 Merge pull request #3065 from posva/tmuxinator-update
686f29f Merge pull request #3052 from DariusPHP/master
a1c5abf Merge pull request #3055 from sachin21/remove_alias
4641130 Merge pull request #3068 from nervo/patch-1
b43e8ab Merge pull request #3057 from igorzoriy/master
6d5d67a Merge pull request #3067 from tacgnol/AWS
e425ddc Merge pull request #2766 from mcornella/add-contributing-file
14f055d Add Composer's local binaries to PATH
f492207 Amended to source the original aws_zsh_completer.sh rather than the mangled version installed into $(brew-prefix)/bin if using homebrew installed awscli on OSX.
cd98283 tmuxinator completion update: Current completion plugin isn't up to date and #2075 PR, which is also the completion plugin on the official tmuxinator repository, doesn't work. Thus this should do the trick for the moment. Also suppressed an error when no completion is available
142a6c7 Fix pass zsh completion and autoloading
17dd579 Update pass completion to upstream
25a3244 Added a link to the file's license and added the commiter as plugin maintaner.
1e2abe5 Categories of issues in oh-my-zsh (work-in-progress)
1aadd63 Add CONTRIBUTING.md file general structure
1b4d426 Adding quotes around $1
9be8101 Adding quotes around $1
362f2a5 Adding quotes around $1
325c187 Adding Textastic plugin
9eb2118 Adding Marked 2 plugin
e20ce81 Adding BBEdit plugin
ee33cee Added 'uninstall' command to brew completion
ac053f4 This alias is conflict cause
dc9e176 Fix missing add-zsh-hook
5d6c73d #git plugin git diff-tree --name-only added
91ba6d9 Don't try running chsh if user already runs zsh
dac2a6e Replace /usr/bin/env with env
eee7345 Resets the font colour to original
df1b0b3 Update jira plugin to allow lookup of issues
49e10ae Make 'ys' theme use hg repo info too
9a0196d New alias for git plugin: gbr == git branch --remote
45abe76 Inclusion of aliases for sign git commits and tags
99e74b0 rounding to emoji clock
7d208be bugfix: two wild apostrophes
78a7c0c Add support for local aur databases
8ad9122 Added _files to complete all arguments following the first as files
89f1d94 Added autocompleting plugin for Android Debug Bridge (adb).
fdb3039 Update half-life.zsh-theme
397a9f7 Update README.textile
4f1ee6c Add gap (git add --patch)
8a43d35 fix paclist() for non-english locales
1b7a3ea Merge pull request #2993 from mittalabhas1/master
36e1cff Merge pull request #2994 from admpsktt/patch-1
961ca14 TomEE maven plugin + integration-test in common life-cycle
80323ec WP-CLI plugin init
e5ac500 Update rvm.plugin.zsh
fbdacbf Update README.textile
0174fee Update README.textile
65ce765 Merge remote-tracking branch 'upstream/master'
db3dd6d Run Web-search as a Background Process with Nohup
63bae2a Use $OSTYPE instead of uname to speed things up
00b21d5 Trust but verify 'scutil' to return ComputerName
0e00f0b typo
73212de Fix osx function: "not valid in this context"
207b6a1 Merge pull request #2969 from nicolas-brousse/patch-1
877d55c Update brew.plugin.zsh
bb928b5 #2914 fixed symfony2 autocomplete
39a1e2a gem plugin: added _files to install command
7478b75 make sure cache dir exists, just like log dir
5756ea0 Revert "specify python2 in shebang"
a6b655f [wd] v0.2.2: Added MIT-License
cea29ff Merge pull request #2914 from bezoerb/symfony2-general
15c5d59 Merge pull request #2923 from Kriechi/bundler-fixes
bf134e9 Fix for recusion limit hit for _rake_command alias
346f6b7 [wd] v0.3.1: Improved completion and bug fixes
4b99742 add BUNDLED_COMMANDS functionality to bundler plugin
34bc91e added Bundler readme file
b007fee add pry to bundler-commands
11f0d27 add spring to bundler-commands
cfc98d3 remove double bundle exec
20c84ea Add 'outdated' and 'platform' completions to bundler plugin
f8ea927 remove berkshelf from bundler-commands
fdbfd41 remove ruby from bundler-commands
f5e69c6 remove spin from bundler-commands
a22e025 remove foreman from bundler-commands
c4eec0b add sidekiq to bundler-commands
d29c53c split bundler-commands into seperate lines
c925aab Merge pull request #2885 from tsujigiri/bundler/run_binstubbed
6eefbe2 Merge pull request #2935 from kubamarchwicki/mvn-plugin-spring-boot
14439e0 Merge pull request #2834 from jbdatko/master
01da53e Merge pull request #2828 from r3dDoX/master
9f8c5d0 Merge pull request #2745 from nicolas-brousse/patch-1
decc0d1 Merge pull request #2670 from trrbl/master
4a36bb1 Merge pull request #2108 from rimenes/add-status-reload-to-postgres
f9bb10d Merge pull request #2940 from hayd/status_code
7e8177b Merge pull request #2953 from jjcomer/master
18eb193 Merge pull request #2955 from SFrost007/jira-prefix
2faba65 Merge pull request #2956 from SFrost007/wd-typo-fix
9d76784 Add support for jira-prefix configuration file
6adc891 Fix typo in warp directory plugin
392af39 added cache:warmup alias
6b3a723 Fix typo in docker plugin
5e328e3 Solaris portability tweaks.
aa82bd7 terminal party show exit status with color
8d762e4 Spring boot autocomplete
2927ce3 Fix POST_1_7_2_GIT check for parse_git_dirty submodules.
676fb4e Fix parse_git_dirty() when status.branch is set.
5728a56 Merge pull request #2892 from willmendesneto/dev
14ebcc8 #2893 generalized symfony2 console directory
4131a59 Merge pull request #2827 from ncanceill/easymerge
480ca22 Make bundler plugin run binstubbed cmd if existing
08632bb Basic support for Docker related commands.
ce9ec85 Add Composer's global binaries to PATH
dbca185 Add /usr/bin/subl path for who has linked sublime text there
75c02dd Plugin jump: autocompletion for numbers and dots
bc2e3ff added useful mvn aliases
f2b81e2 Add spring to bundled commands
c5d9fc9 git_prompt_info: ignore git-config errors
49161e7 Add missing `command` wrapper for git
340da08 Add missing quotes to within-bundler-project function
82d557a Add pip2 and pip-2.7 support to pip plugin
89a5075 Add pip3 completion support to pip plugin
45b6129 Add new plugin: "frontend-search"
9c11202 fix `-nt` usage
09fdf76 ignore usernames beginning with underscore
7fbbf28 return 0 when not a git repo before, 128 was returned, which could display an error, but out of a git repo this should exit silently fixes #2226
1274a5e Added cabal freeze subcommand.
eb06484 added emoji plugin to make it easy to display emoji characters in the terminal
999bd35 fix root mode not working in bureau
1ab0f77 Updated cabal commands for Cabal 1.20
859a37d Fixed typo in cabal plugin.
d3acea3 Updated cabal plugin with Cabal 1.18 commands.
50fe95a Autojump plugin: check user local installation first.
519d37f Vundle plugin now works with submodules.
aee8877 fixed rvm warning
99c9dbe New alias for repo: ru and rst
e04d3e0 Add startproject to django command completions
f7948ac Adding compression to rsync commands
f82092a Add a command to show unresolve files in merge
67d74cb Don't override ZSH_COMPDUMP if already set.
fbf4a78 Show user prompt in gnzh theme regardless of UID
1232485 Added ssh-like mosh window title
a9e1d9a Cancel upgrade if $ZSH is not writable from #2360
de41dee Add alias for container:debug task
e5ed07e specify python2 in shebang as suggested in #2382
7297b44 too many plugins = slow init warning
3cdfdad use ls instead of find to avoid incompatibility with gnu find
b1c97bc Fix comparison used to determine if the cache is outdated.
ac1a321 add gfa alias for recursive formatting inspired from #2018
76e23e6 Fix permissions on wd plugin continuating #1923
b569273 Removed unnecessary execute permissions for some plugins
3c41da3 Update colorize.plugin.zsh
bce7497 drop the foreach, make it even shorter. thanks Marc Cornellà!
3fac127 Correct wrong plugin file name
97ab436 Fix path for colemak plugin
6bf7f39 Steeef theme checks untracked files instead of directories
80828cd Update plugins/rbenv/rbenv.plugin.zsh
7bb42fb Corrected syntax error in github plugin's empty_gh function
b7f51bb Adds itunes vol command.
6fc241b extract plugin will unzip *.sublime-package files
5146931 added prefix/suffix variable for customizability
1ad1c52 Move aliases to 'custom' section of .zshrc template
59c8fcc added new function to get number of commits ahead of remote
3c485db replaced hardcoded origin/{branch-name} with @{upstream} which gets the upstream branch since git 1.7.0
c0b094c Fix function/alias naming clash between bower and bundle plugin
b64e695 Ordering nocorrect aliases alphabetically
cd8d5c4 Defining nocorrect aliases only when ENABLE_CORRECTION is "true"
4c64cf4 Replacing DISABLE_CORRECTION with ENABLE_CORRECTION in zshrc template
8d976e0 fix(tools/check_for_upgrade): Don't source profile
5e601d6 Fix dud alias. Switch --max-depth for just -d
c1f5a17 This is already done in lib/theme-and-appearance.zsh and supports Darwin/BSD/etc
9590b96 Write the update file even if `CLOBBER` is unset.
8355233 Fixing typo.
0b4bf90 Minor markup edits
2c19c0e typo, fixes #1806
3913106 Merge pull request #2787 from irnnr/plugin-vagrant
8ed8005 Improve consistency, remove dots at end of command descriptions
30d9952 [FEATURE] Support vagrant global-status
7f8ee9a [FEATURE] Support Vagrant Cloud commands
38fe100 [FEATURE] Support Vagrant Share
236c8de [FEATURE] Support Vagrant 1.6 version command
33ef34b Fix gmt compdef
73bf940 Update brew.plugin.zsh
5918d91 gitfast: back-port prompt fix
6a5c8fb gitfast: update to upstream v1.9.2
eafd5f3 Merge pull request #1635 from jimhester/per-directory-history
11bf1a3 Merge pull request #2681 from mcornella/fix-zsh_reload-plugin
4509228 Merge pull request #2728 from benwong/patch-2
59de9aa Merge pull request #2671 from ukrutt/master
01dcf51 Merge pull request #2502 from UniIsland/patch-1
5eb5f71 Merge pull request #2511 from FloFra/master
8aa6e6a Merge pull request #2650 from kemko/patch-1
ee31abf Merge pull request #2729 from grodzik/master
3b830aa Merge pull request #2693 from javiertejero/master
7949a1c Fix `docker rmi` tab completion
cee5228 Fix for Python3
9385b3e set exclude-dir or exclude grep flags only if available
fcfa323 Use cache folder inside $ZSH, delete with unaliased rm
6f3cf19 Spelling correction in itunes control function.
a9061f3 Merge pull request #2633 from redsunsoft/agnoster-theme-git-mode-addition
f8f0126 Merge pull request #2685 from delynn/patch-2
7d696f7 Remove mailcatcher
00d6ef8 Merge pull request #2329 from pstadler/brew-cask
f46d06d Correct redirection of output from 'hash'
b2ea7d3 Add Ruby 2.1.1 support to rvm plugin
70dfb91 Merge pull request #2663 from bobmaerten/docker-autocomplete-updates
fe73f8d Merge pull request #2651 from jehrhardt/fix-emacs
175310a Merge pull request #2661 from mcornella/fix_title_tab_percent
ae0c650 Merge pull request #2659 from simonc/allowing-pow-path-with-spaces
861d380 Merge pull request #2658 from leifcr/rake-fast-issue
27c28a9 Merge pull request #2647 from bobwilliams/master
78967b6 Merge pull request #2656 from philenotfound/master
a6b9597 Merge pull request #2652 from lukehorvat/patch-1
a5f6f72 Merge pull request #2660 from KevinBongart/add-readme-to-rake-fast
9c1241a Merge pull request #2662 from aeriksson/master
400643f adding urldecode_json to compliment urlencode_json and updating readme.md; slight tweak to urlencode_json from previous commit
0605d53 adding urlencode_json and associated README.md details
53323ab Added git mode support for merging, rebasing, and bisecting
76e1edf Matching autocomplete for Docker v0.9.1
9650861 Fix broken reverse-menu-complete keybinding.
b2ce306 Simplified gallois RPS1 setup using some helpful scripts
982b534 adding the is_json tool and associated readme.md details
5137e0e Escape % in $CMD variable
7b08f49 Add README file to rake-fast plugin
015b742 Allowing path with spaces in pow plugin
9eadaf5 brew-cask plugin: use spaces instead of tabs
aec73f6 Merge branch 'master' of github.com:philenotfound/oh-my-zsh
4446787 New aliases for 'apt-get' and 'aptitude' as they were overwritten by later aliases
64bb1a2 adding support for node
a3b357a Adds command line aliases useful for dealing with JSON
94a5cc5 Updates spectrum.zsh
732bca0 $ZSH is the OMZ installation folder, not configuration
2697a18 mention $ZSH_CUSTOM as suggested in #2295
ffd5cb2 suggest setting $LANG to fix #1286 and fix #1823
c0e3c55 Fix export syntax of $GREP_OPTIONS
c1ada7a Rendering the 'vagrant box (remove|repackage)' completion code independant of Vagrant implementation details.
8194aa9 application completion
bc02c28 library completion
0f32083 in hindsight, this is probably a bad idea
ee3a20a completion of targets
fd3d5bf instance and cluster completion
6d7d131 node completion
f88b6bd help command, node completion
95f8319 added _files values for certain options
9b4cf96 completion options
f644d2e added alias
4dcdd13 added completions for all known arguments to all known commands
7daf2f4 apparently, this file must exist for the plugin to load
1988958 added completion for all asadmin subcommands
d2a765e avoid VCS folders
d1323ed Move example plugin to the custom plugins dir.
7a94b76 Add completion for pip install -r - so that it autocompletes requirements filenames
ee8f9ee Added an <esc> to the begining of everything. I ran something when I was in insert mode once and all it did was shove !args... into the buffer.  <esc> first.
46c2af3 Updated the README to include documentation on the postCallVim callout
5a81fda Added an optional callout to the end of the interaction function. I put it in to allow me to put the window focus on MacVim / GVim depending on the different OS I happen to be on
83071a1 Fixed: If you callvim on a non-existant file with a relative path, the CWD of the running gvim process is used, and that's not right.  We use the PWD explicitly instead, in this case
cdea478 A plugin that makes it easier to interact with the (single) running instance of gvim
8d1fa09 command to restart pow process
640e5da added powed command to list pow urls
48e53fb fix gnzh theme to detect local rvm installations
c70fcd6 Added link to wiki page for plugins to README.
95ffb16 Add gem build autocompletion
b578eea `setopt append_history` is not necessary.
48f8f28 Plugin: Rake-fast: Support both *nix and Darwin
37e619e New aliases for 'apt-get' and 'aptitude' as they were overwritten by later aliases
5f09d0f Fixed typos + made wording more consistent in zshrc.zsh-template
5303793 history-substring-search: bindkey now checks if terminfo is available first.
64c3ce3 adding xargs -0 to node aliases
f8890f5 updated readme.md and using tab char for formatting with node
8db3e63 bug fix for node pp_json version
c451ff4 Add check for display list equals nil
3976b93 Fixed which output at each new shell creation
1fc40c6 updating README.md
3bae9dd adding README.md for jsontools
ffc17b6 Merge pull request #2563 from bobwilliams/master
27965fe Merge pull request #2390 from LFDM/updating_spectrum
47ad242 Merge pull request #2645 from ncanceill/template-zshrc
1ca4e21 Merge remote-tracking branch 'upstream/master'
6889dfa $ZSH is the OMZ installation folder, not configuration
04c2d29 mention $ZSH_CUSTOM as suggested in #2295
f9ad368 suggest setting $LANG to fix #1286 and fix #1823
315099d Merge pull request #2643 from mcornella/patch-1
d70e732 Merge remote-tracking branch 'upstream/master'
12e30fa Fix export syntax of $GREP_OPTIONS
178b522 Merge pull request #1302 from cybozuty/master
c4727ab Merge pull request #1262 from fred-o/glassfish-plugin
393c805 Merge pull request #1162 from nXqd/patch-1
668886e Merge pull request #1117 from Peeja/move-example-plugin
5540daf Merge pull request #967 from wjlroe/pip-requirements
7550436 Merge pull request #1022 from derekwyatt/master
ae1f331 Merge pull request #1005 from cmar/powed
ae1a9e2 Merge pull request #995 from wting/fix_gnzh_ruby_detection
fff49ae Merge pull request #990 from tommorris/master
d4e907b Merge pull request #973 from dlee/gem_build
9eacd7d Merge pull request #750 from blueyed/history-drop-default-append-history
d41c588 Merge pull request #672 from eMxyzptlk/zsh_reload
d8a5fff Merge pull request #662 from walle/add_autocomplete_for_gas
95302af Merge pull request #646 from whittle/master
319aafc Merge pull request #2618 from bdubertret/fix-gwip-norm
23fe53e Merge pull request #2634 from danchenkov/master
73fd066 Merge pull request #2638 from miguelfrde/irb
d968397 Merge pull request #2605 from mhauserr/patch-1
1235103 Merge pull request #2615 from erbridge/fix_virtualenvwrapper_lazy
c97aff8 Merge pull request #2616 from Bounga/master
e0e4c0e Merge pull request #2620 from reedriley/master
2e74fe7 Merge pull request #2619 from korylprince/master
610655e Sort bundled commands alphabetically
2403b05 Merge pull request #2440 from m0nah/master
e742073 Merge pull request #2510 from pavoljuhas/master
2e06412 Merge pull request #2531 from KevinBongart/rake-fast
6d616de Merge pull request #2637 from aforty/master
184e93c Merge pull request #2627 from loxley/add_knife_vault_cmd
c98883f Merge pull request #2631 from AntoineD/master
c137c7b Merge pull request #2639 from jieryn/master
1509ac9 add common video formats FLV and WEBM
c3150ed Add irb to the list of bundled commands
69fa67c Merge pull request #1 from KevinBongart/brew-cask
6a8f83b Add new brew cask commands
32a7824 Added a forward-delete fallback to bind Delete key
5f31190 atom plugin
c5413d7 Aligned comments
55a9d68 Update key-bindings.zsh
e537ee9 added terminfo keys verification
ef343ee Fix dirpersist plugin
fb2d6eb Fixed errors if acpitool isn't installed on linux
645fceb Add chef-vault knife cmd support
c1c107c Add scd plugin for smart change of directory.
6952105 Merge branch 'master' of https://github.com/robbyrussell/oh-my-zsh
d3babe0 Don't show useless '[]' when chruby_prompt_info is empty
a869ec9 Fix gwip alias in git plugin when no files to rm
5a58667 Merge remote-tracking branch 'upstream/master'
baf2ab1 Don't set RBENV_ROOT to "$HOME/.rbenv" when using Homebrew rbenv
ca90021 Merge pull request #2576 from jeffwilliams/master
81d53af Merge pull request #2597 from githubhjs/master
3be2e34 Don't lazy load the virtualenvwrapper.
12415a9 Merge pull request #2539 from chriswiggins/master
dcae31d Merge pull request #2549 from brandon-beacher/master
23a43e9 Merge pull request #2574 from thiagowfx/linux-battery
080409a Merge pull request #2603 from docwhat/ssh-agent-hostname
fed8076 Merge pull request #2607 from avonderluft/dev
8ee9971 Merge pull request #2613 from Fisiu/ignore-ssh-users
baeac5b Remove copyright information, as per #2588
b56e8fb Ignore more users in ssh completion.
c9e7129 Merge pull request #2602 from blueyed/use-default-hosts-completion-2
bf4d4db Merge branch 'master' of git://github.com/robbyrussell/oh-my-zsh into dev
8f79713 add option to show dirty status of current dir
223fd60 Merge remote-tracking branch 'upstream/master'
9e90bf0 Added v as a keybinding to edit-command-line
ee21fe9 Merge pull request #2380 from rkh/chruby-gallois
8d8df3f Merge pull request #2435 from tompelka/master
d943d23 Merge pull request #2466 from jarus/steeef-virtualenv-fix
07c2bdf Merge pull request #2588 from kerimdzhanov/remote-themes-copyright-info
d752c8c Merge pull request #2584 from joukojo/master
3b604c6 Merge pull request #2590 from zhouhua015/master
d058c9d Merge pull request #2593 from bobmaerten/typo-docker-plugin
552aab6 Merge pull request #2591 from kevinxucs/remove-extra-aliases
cfe468f ssh-agent: prevent environment file from flapping
47b0d75 Fixing a few quirks in the latest installer updates (quoting /Users/robbyrussell/.oh-my-zsh and such). Also mentioining our twitter account after install
71d9420 Use zsh's default for ':completion:*:hosts'
de78e47 Merge pull request #2149 from cristim/master
7adf66f Merge pull request #1355 from F30/key-bindings
ca648ae Merge pull request #2072 from jorge-d/master
d65a153 Merge pull request #2595 from ksamdev/git.io
d0dcedc Merge pull request #2421 from LFDM/rails_plugin_fix
7c95518 Merge pull request #2518 from erawk/master
0d76d9e Merge pull request #2326 from zakkak/master
e8b85f9 Merge pull request #1776 from ronshapiro/master
a5df4d7 Merge pull request #1501 from gambhiro/master
9cb14dc Merge pull request #1085 from avit/install-path
d8ed8f6 Merge pull request #650 from tristan0x/emacs
9272b0b Merge pull request #2600 from jontewks/patch-1
5f5e550 Update license year
b6cbba9 Updating README to show the new install URL, which redirects to the raw files on github.
86a272e Merge pull request #2596 from ryanwmarsh/fixing_bureau_scrollback
ae2f6f3 List pkgs by size
c3c8cc3 Fixes #2467 tab completion scrolls back in terminal when using bureau theme
b9841b0 Add github url shortener
3c9a29b Fix typo in autocomplete arguments
b71a2b9 Removed unsolicited aliases.
de0e7b5 Fix hgsl alias.
48579eb Merge pull request #2341 from mcornella/title_backticks
9f66d5b Document alternate install paths via ZSH variable
da1fa3b Abort installer on errors
2e11e2a Write install path into .zshrc
5bd590c Reference default install path from ZSH variable
c249c69 Remove all copyright information in themes. Closes #2587
a811ab0 Merge pull request #2331 from posva/catimg
e744bf2 Merge pull request #2479 from mrbfrank/theme-agnoster
6a2e65f Merge pull request #1402 from sergeylukin/master
59db638 Merge pull request #2565 from theallegedjosh/master
7b7c5fd Merge pull request #2579 from mfaerevaag/master
0018969 Merge pull request #2535 from IgorTimoshenko/feature/yii-plugin
01261d4 Merge pull request #2556 from chrisjones-brack3t/fix/git-prompt-1-9
0e10ebb Merge pull request #2572 from kevinxucs/sublime-linux-fix
0e31bed Merge pull request #2059 from felipec/fc/gitfast
755f809 Merge pull request #2529 from emanuelez/patch-1
95e6fea Merge pull request #2525 from lukesteensen/update-go-plugin
ae9a9b7 Merge pull request #2481 from felds/master
7b06ce7 Merge pull request #2366 from chuancong/patch-1
cc926e9 Merge pull request #2322 from dpsk/patch-2
92a54eb Merge pull request #2166 from cap10morgan/no-clobber-rbenv-root
978bb40 Merge pull request #2564 from miry/patch-3
9bd9278 Merge pull request #2287 from rumpelsepp/master
7a14ab7 Merge pull request #2400 from bric3/svn_fast_plugin
deb08a7 Merge conflicts with af-magic theme
2208854 Cleaning up conflict with merge of #2330
fd8ce7f added mvnjetty alias
7378765 added aliases for tomcat:run tomcat7:run
8b667b2 added mvn-update
d41ac7f Updated wd plugin to v0.3.0
c0b98cd Added dirhistory plugin.
2691520 Integrate changes from #1841.
564a708 added the linux implementation to the battery plugin
5ba96e9 Fixed sublime plugin behaviors.
6dcdfe6 :panda_face: Added simulator alias for Xcode plugin
185cb6e adding support for node
fdbf0cb gem push alias and gem yank alias
da573f6 add gem push alias
f139401 add gem build alias
56babe6 Adds command line aliases useful for dealing with JSON
6b3c953 Merge branch 'master' of github.com:robbyrussell/oh-my-zsh
6cc2408 ..a fundamental piece of matter.
74ad998 Merge pull request #2548 from puffnfresh/gitignore-plugin-url
2eb68a4 Merge pull request #2544 from fduch2k/patch-1
8309b0a Verification of convert inside the function
c397000 grab last item in list which is the branch instead of relying on position.
7a54636 Much needed PEP8 love. Use spaces, not tabs.
a951600 Avoid 'title:parse error' with single quotes in $CMD Fixes #2182
3e5de21 Revert previous commit, escape %
b73ced3 Use single quotes also in $LINE definiton
b0fbe0d Avoid evaluating special chars in $LINE on title command (fixes #2234)
598a9c6 Adieu l'ami.
500cbbc Merge pull request #2541 from puffnfresh/cabal-sandboxes-info
840ae43 Remove mailcatcher from the bundler plugin.
c0f716b Fix remaining broken URL in gitignore function
bd4f7e2 Update gitignore.plugin.zsh
861290e Merge pull request #2542 from puffnfresh/gitignore-plugin-url
1df7d01 Fix URL to gi (gitignore) function
358b6ff Add cabal_sandbox_info function
fdd864b Update battery plugin to show calculating - OSX
354593e Added Yii basic command completion
1a029f2 Add rake-fast plugin for fast rake autocompletion
f6f3e93 Improve oneline logs
aa9db3e update golang plugin to match official version
2078e7d remove duplicate 'go' plugin, symlink to 'golang'
f3f0a54 Updated _brew zsh autocompletion to latest Homebrew upstream
4ce7f0a Merge pull request #2515 from nupfel/plugins/iwhois
2ed9903 Merge pull request #2516 from lukesteensen/patch-1
0d212bb Add 'services' command to homebrew completion
0cb2ecf provides iwhois command to use CNAMES under whois.geek.nz to find most accurate whois server
c563fe9 Makes history-substring-search use term specific up and down buttons. Fixes #2089.
ed19ffe Add scd plugin for smart change of directory.
217d8f0 `fc -l 1` instead of `history` in zsh_stats #2501
ec37c05 Merge pull request #2465 from klange/master
7a6e2c0 Merge pull request #2342 from blackjid/master
41d9717 Merge pull request #2402 from bric3/battery_level_gauge
4d83da7 highlight the username when root
685ea4a theme agnoster: remove trailing space
7daaa18 corrected branch character
df0305a Merge pull request #2368 from lumbric/master
78ffa71 updated url to latest powerline-patched fonts
3d41804 Improve virtualenv prompt in steeef theme
a48fd1e Update nyan.plugin.zsh
9b3344d change nyancat telnet server
cc8b093 Adds a method that print a battery gauge
7b9e489 Add Laravel4 plugin
23e57c1 Adding commit hash to branch name in my favorit rjk-repos theme.
a667191 Fixes _rails_command
ca129bb Renames main plugin function to `svn_prompt_info`
f66ab7f Renamed the methods of this script
8ede6c6 Added further cleanup and svn status information
b0b79e0 No need to eval in rvm_prompt_info!
8bf8e1e Heavy refactor of svn-fast-info
d485044 Merge pull request #2389 from driver2000/patch-1
a609fd5 Merge pull request #2398 from phstc/fixes-tmuxinator-plugin-find
642ae64 Inline `parse_svn` to avoid leaky state
1304ed8 Report the SVN need upgrade
2d6d9d5 Fixes RPROMPT in af-magic.zsh-theme
85fde31 Renames the file to prompt_info_functions.zsh
082607c Adds documentation.
72392a2 Adds all other dummy implementations.
9ce1b62 new faster SVN plugin
4354f91 Fixes tmuxinator plugin find on OSX
288604e add brew-cask plugin
e2838f7 Merge pull request #2396 from soluwalana/master
d60522c escape dashes
827d9df Update git.plugin.zsh
6a40557 Updates spectrum.zsh
3e5e2d4 Fix bad right prompt placing.
c6aacf6 Refactors ruby_prompts.zsh
8a887c5 Joins ruby prompt files and adds ruby_prompt_info.
7aa7661 Adds chruby_prompt_info dummy function.
ae6ded5 Returns false when rbenv is not found.
468b24a Returns false when rvm is not found.
bbbff94 Fixes rvm_prompt_info() in lib/rvm.zsh
f6bb74e add chruby info to gallois theme
b58b996 fix name schema for sudo plugin
00b2cc6 New plugin for the n98-magerun Magento command line tool
e41b6ac Add support to command "show"
a38af27 Revert "Cancel update if the current user doesn't have write permissions for the oh-my-zsh directory."
c9e5adb Merge pull request #2358 from n-st/master
152e1e0 Cancel update if the current user doesn't have write permissions for the oh-my-zsh directory.
dbdd23d Prevents oh-my-zsh loading the .zshenv twice
fdfc907 Add rdmtc alias for rails plugin.
c05a28a typo fix
44b23ae catimg: fix exit without using source supresses errors from convert whilen converting, as they are usually just warnings
349fa15 Fixed a dirs bug for catimg
cbd63f2 Fix for virtualenv support - fixes #2328, fixes #2297, resolves #2319
0185d99 catimg plugin allow to print an image to the stdout using convert
e978119 Improve comments
be6b1b3 Improve comments
9b811fb accidentally blew away a git config setting used for another purpose, renaming in order to distinguish
357ab49 Merge pull request #2316 from BBonifield/master
f082d7a Making auto-correction off by default
8c93142 Merge pull request #2303 from petervanderdoes/git-flow-avh
6fa64b7 Merge pull request #2296 from pstadler/master
2ffca06 Update git-flow-avh 1.7.0
858c515 source ~/.profile only if it exists
4e34588 Merge pull request #2208 from onemouth/master
032ca0d Merge pull request #2173 from jeffrey4l/venv
7d1b668 Merge pull request #2159 from pungoyal/master
f0a7adc Merge pull request #2176 from dejanlukan/spectrum
b8c1566 Merge pull request #2194 from kevinxucs/gitignore-fix
83c18f8 Merge pull request #2195 from KevinBongart/command_blacklist_for_bundler_plugin
aed9cff Merge pull request #2215 from posva/rand-quote
b422b07 Merge pull request #2255 from shadyproject/plugin/xcode-support
4be8c51 Merge pull request #2258 from amilaperera/master
b764fad Merge pull request #2262 from mfaerevaag/master
cd219f7 Merge pull request #1520 from prooftechnique/master
f974fa3 Merge pull request #1574 from adben/master
a762b3e Merge pull request #1683 from mnme/master
0d35210 Merge pull request #1087 from avit/install-template
de35b55 Merge pull request #1136 from koraa/pull_req_fastfile
4bb8bd8 Merge pull request #1135 from koraa/pull_req_sinchar
1dd9c43 Merge pull request #1134 from koraa/pull_req_helpers
c9dd778 Merge pull request #1201 from koraa/pull_req_debian
5a32796 Merge pull request #2088 from Stibbons/gsemet_push_pep_pylint_completion
19ce09c Merge pull request #2086 from Stibbons/gsemet_push_repo
f48d675 Merge pull request #1883 from Stibbons/gsemet_push_source_profile_for_upgrade
bc79f61 Merge pull request #1866 from Stibbons/gsemet_push_common_aliases
7c3665b Merge pull request #2003 from dongweiming/update-gem
c0a6f8a Merge pull request #1950 from dongweiming/add-systemadmin-plugin
573830b Merge pull request #1947 from dongweiming/add-sudo
2f3bddc Merge pull request #1931 from dongweiming/update-urltools
027c9ee Merge pull request #1942 from dongweiming/update-powify
b93f3b9 Merge pull request #1940 from dongweiming/update-supervisor
44c7fd9 Merge pull request #1928 from dongweiming/add-hist-stamp
f574849 Merge pull request #1927 from dongweiming/modify
533e31f Merge pull request #1956 from emesix/patch-1
3ff772d Merge pull request #2022 from Zhann/master
bbadcf7 Merge pull request #2034 from kasperisager/master
b38db4a Merge pull request #2097 from natecox/master
b6f4a88 Merge pull request #2131 from stevschmid/patch-1
4fc0806 Merge pull request #1030 from solnic/master
7a6caf6 Merge pull request #950 from sonicradish/master
1badb74 Merge pull request #948 from excepttheweasel/master
1c185f0 Merge pull request #946 from rach/master
4954335 Merge pull request #781 from pilif/two-lined-pygmalion
2a43c5e Merge pull request #684 from masnick/master
07594af Merge pull request #639 from MarcoPeraza/git_unpushed
2737289 Merge pull request #513 from randy909/fix-edit-cmdline
3d6f9d7 Merge pull request #306 from jtriley/git-prompt
7f3e56f Merge pull request #2198 from Larandar/master
182652b Merge pull request #2202 from kevinxucs/themes-random
9a40ae9 Merge pull request #2212 from bsiegel/bundler_bi_function
e25329f Merge pull request #2222 from jamesoff/fix-battery-plugin
fb614a0 Merge pull request #2229 from prubianes/master
9357f2f Merge pull request #2236 from Isquariel/nvm
ac83834 Merge pull request #2270 from michaelorr/slow-git-fix
5589741 Merge pull request #2272 from TuiKiken/master
7ee3b27 Merge pull request #2292 from Atem18/master
22c0db6 Change `bi` alias to a function
06bd72f Merge remote-tracking branch 'upstream/master'
84e178f Fixed lines 32, 33, 34 where one 'p' was missing in 'zypper' command.
5643fac Merge pull request #2290 from jtinfors/master
270b1dc Merge pull request #2242 from sztupy/fix-mvn-color-locale
1b337af Merge pull request #2252 from henrique2010/master
259daa0 Merge pull request #2254 from Atem18/master
401c82a Merge pull request #2286 from ych/master
d51cb6d Merge pull request #2260 from Stibbons/gsemet_push_sublime3_support2
b6c6a5a Merge pull request #2285 from dhruvasagar/master
7a27a1c Merge pull request #2240 from Kriechi/master
96bd365 Adds the hgsl alias for one-line shortlog convenience
1493d88 Added migration notification for rails plugin
14005be Merge pull request #2249 from pabrahamsson/obsd_colorls
f078e03 Merge pull request #2275 from wjv/wjv
c9f2c94 Added/modified some useful aliases.
699c82e Add FreeBSD support for autojump plugin
3d851da Added Amuse zsh theme
b4ffe5c wd.plugin: Added checks, readme and completion
240b25d wd.plugin: Fixed nested dirs
66a33b8 Merge pull request #2261 from webframp/feature/chruby-plugin
fabe23b Merge pull request #2259 from eddiemonge/patch-1
370ccc3 Merge pull request #2266 from ssm/plugin/pyenv
81f9f3c Merge pull request #2271 from ashleyh/master
83462b3 Merge pull request #2273 from thibaudgg/patch-1
7cf34f5 Merge pull request #2276 from christianschmidt/master
ec779d5 Update _pass to follow symlinks for completion
27d048a Merge remote-tracking branch 'upstream/master'
d12113a Use precmd hook for updating OS X proxy icon
b5b3519 Update _heroku config arguments (Heroku Client v3)
7c56364 Add update statistics
4d3fb28 fix pip plugin
fbd479b adding a check for git config option to disable git_prompt_info() on a per repo basis
9b37fcb unified and improved Rails plugin
613d116 Add pyenv plugin
037b39a Add simple plugin…
habnabit added a commit to habnabit/dotfiles that referenced this pull request Jun 12, 2016
4400720 Merge commit '1b59a08e83397ed1990060eee235a54f93af1d51'
1b59a08 Squashed 'plugins/zsh-syntax-highlighting/' changes from dbd27cb..3dc5741
60c706d Merge https://github.com/robbyrussell/oh-my-zsh
192de6b Merge pull request #4238 from wubaiqing/master
1605d82 Merge pull request #4234 from mcornella/fix-fbterm-autostart
7c60da9 Merge pull request #4233 from apjanke/apple-term-no-dupe-folder-in-title
2ecb17c Merge pull request #4230 from mcornella/revert-custom-early-load
20f536c Merge pull request #4228 from mcornella/fix-virtualenvwrapper-quotes
b8dbd9b Merge pull request #4217 from mcornella/standard-open-command
4c1eda1 Merge pull request #4216 from gkze/master
e3a01e5 Merge pull request #4212 from NAR8789/master
f6a2b97 Merge pull request #4203 from apjanke/title-protect-promptsubst
45d640b Merge pull request #4200 from lislon/systemd-patch
84ecc66 Merge pull request #4172 from AlexTalker/fix-typo
8c3d4a9 Merge pull request #4095 from kd35a/master
9626a36 Merge pull request #3654 from Qix-/patch-1
afc36e2 Merge pull request #2446 from fallwith/emoji_plugin
c45fff1 Merge pull request #2367 from andrew-dwyer/n98-magerun
d1ea849 Merge pull request #2106 from adepasquale/master
9caa215 Add Baidu support to web-search plugin
be10229 Exit only if the fbterm session closed correctly
be5dcb8 Check if fbterm is installed and use $TTY variable
17da983 termsupport: avoid repeated dir in window title in Terminal.app
3fe3ce8 Revert "Move custon *.zsh file sourcing up so that they can load plugins and other things that come after."
ccb0ae5 Add quotes to support folders with whitespace
b760a10 Use standard open command in fasd and lighthouse plugins
d1d06b5 Use standard open command in current plugins
2d0bfcf Implement cross-platform open function open_command()
cddfc3b style fixes
bd893ac Merge pull request #1 from dlsniper/terraform
cf78586 Update to latest Terraform release 0.6.1
7f3e614 Add terraform completion
aac5523 Additional chpwd clobbering fix for dirpersist
084792b Don't clobber chpwd
90ea67e termsupport: protect title() with `emulate -L zsh`
5554207 Add alias for "systemctl cat" and "systemctl edit"
3d5b343 Merge pull request #4122 from apjanke/venvw-treat-git-repo-as-venv-again
b3ce0f3 Update README.markdown
a3f0439 Fix little typo that makes the statement useless.
e56c898 Merge pull request #1 from apjanke/emoji_plugin_3
9a39725 Remove redundant comments from the .zsh file (since they're in README now).
6d618ef emoji plugin: generate char map from Unicode UTR51 data files
a207a38 Merge pull request #4099 from moncho/master
3ea3384 Merge pull request #4041 from apjanke/fix-jira-prefix-comment-merge
c968346 Merge pull request #4106 from apjanke/venvw-no-realpath
f73e642 virtualenvwrapper: treat git repos as project roots again (instead of requiring a .venv customization directory) Change error output to more conventional OMZ format, so it's clear the plugin is for oh-my-zsh and not base zsh. Use `local` variables instead of manual unsetting.
c1f1f91 virtualenvwrapper: Replace "realpath" with portable zsh-native `:A` and `:h` modifiers
0950f9c Plugin now uses completion script from docker-compose repo.
546b99a Use 'quit all' instead of counting needed quits
599831b Merge pull request #4058 from ncanceill/plugin-git
d24196c git plugin: fix ggl to avoid empty string see https://github.com/robbyrussell/oh-my-zsh/pull/2790#issuecomment-112716330
ed6645a Fix plugin/git ggpull and ggpush backward compatibility
d0670aa Fix merge conflict for jira-prefix and jira add comment
ab18795 Merge pull request #4002 from aliafshar/patch-1
f66a54f Add missing space causing parse error.
8921902 Merge pull request #3852 from sachin21/add_alias_of_bundle_clean
5d214af Merge pull request #3858 from muchweb/muchweb-patch-1-editor
7daf740 Merge pull request #3874 from diraol/patch-2
0665ece Merge pull request #3973 from moul/pr-boot2docker-update
31b351c Merge pull request #3947 from mkwmms/patch-1
0a8ca6a Merge pull request #3918 from cbazin/master
b55effd Merge pull request #3919 from delphij/history-extendedglob
34d3680 Merge pull request #3838 from forivall/hyphen-insensitive
3a57076 Merge pull request #3813 from ziegs/fix_gradle_tasks
628c1fe Merge pull request #3848 from tristola/master
058def3 Merge pull request #3798 from dnixx/vundle-update
5fba46a Merge pull request #3821 from tresni/fix_minimal
c0b283c Merge pull request #3833 from coopermaruyama/master
6a340d9 Merge pull request #3988 from UserTaken/docker_update
ea5ff03 Merge pull request #3759 from mikeokner/master
04c301b Merge pull request #3975 from wernerb/patch-1
a1e722d Merge pull request #3976 from rodrigoargumedo/patch-1
422db48 Merge pull request #3986 from evilhamsterman/master
3d2bf22 Merge pull request #4001 from ivanfoo/fixOddCharsOnMac
a778463 Merge pull request #3929 from GunfighterJ/GunfighterJ-patch-sublime3
78bbf7a Merge pull request #3809 from ncanceill/easymerge
c6460ef Fixed odd chars on mac for agnoster theme
a7e7982 Add mix-fast plugin (similar to rake-fast)
55b1a2b Update _docker
3d670c0 Adding quotes to git completion discovery path
4cc0a26 A paver (Python build and configuration utility) plugin
26c7adf Revert "Added migration notification for rails plugin"
8b95bdb Added github in web_search plugin.
83295ec last-working-dir working with spaces in dirnames
d0b690b use local options to set no_equals before sourcing bash completion script
9eaf511 Merge pull request #3990 from ncanceill/plugin-git
f1a43da git plugin: new/changed aliases gaa was brought back by popular demand — see #3535 gap was replaced with gapa — see #3682 gdc was replaced with gdca — see #3977
e55d84f Add reference to bundler plugin issue in README
763cef8 Add `leaves` command to `brew` completion
4b76b74 remove trash command from osx plugin
cf3fb87 Added README.md file for ForkLift plugin
81da076 Added README.md file for atom plugin
a2d7d36 Added README.md file
c28b226 Fix README.md for sst command
0e35bd4 Plugins: vi-mode: Add first README file
0f96e8e Plugins: archlinux - add basic README.
e592968 Plugins: archlinux - use command -v in favor of which
e0ce876 Plugins: apache2-macports - add README
3f92985 Added references to the `external themes` wiki page.
8eb31a6 git plugin: fix ggpnp when called without argument also allow multiple arguments for ggp and ggl aliases
81eec40 * Added header with help and information * Moved git information to left prompt, with   support for:     * +ZSH_THEME_GIT_PROMPT_UNTRACKED, MODIFIED,     STASHED, ADDED, UPSTREAM STATUS     (if applicable) * Removed right prompt * Refactored following Google's guidelines for   scripts [ http://goo.gl/oJSXH2 ]     * Using local variables where applicable
1f008b4 Update Mix complition upto 1.0.4
02c2b74 Update aliases in laravel5.plugin.zsh file
266894c Update taskwarrior.plugin.zsh
1a4dc0d Renamed 'ss' alias to 'sstat' (to avoid collision with /bin/ss).
69dee65 Fixed typo in README
8791d7e Update bgnotify.plugin.zsh
980528f fix typo
af4ffe5 adb: add more commands
c838b9a Update README.markdown
fb5b83d Fixed jump pluging to display the right mark name on 'mark . '
563e105 Added README for mercurial plugin
4ab4300 Add git to prerequisites
23ac32d add help link to install zsh
4c409b0 sublime: Make subl a function so it can be called from functions in other modules
e8ac8b9 Added support for detecting Sublime Text 3 on Arch Linux
6bec3c6 Update history-substring-search README
83c3316 Added the tugboat autocompletion plugin
f513999 git plugin: make b local in gg* functions because it leaked, and led to #3991
6ff96da git plugin: fix error msg in gwip alias because git rm will fail when no files were deleted
6c29041 git plugin: global var for git command due to issues like #3962 until a proper plugin-loading system is implemented
a570f4b git plugin: bring back olg gg aliases by popular demand, see #3972
557dc09 More run and create options
2fb3265 Only load url-quote-magic if it is available. Partially fixes #3614
25df9f3 Disable globbing when executing `zeus rake` aliases to enable use of square brackets without escaping
2d40cc0 Add git_prompt_behind and git_prompt_exists
f21a672 add kitchen completion plugin from @petere
70c4a27 Added a possibility to display the remote branch and the number of commits you are ahead or behind
41104f8 Fix homebrew directory in aws plugin.
1653545 Recognize comments by default.
a28dbc8 Move custon *.zsh file sourcing up so that they can load plugins and other things that come after.
8652fd6 added comment functionality
de56943 Improved the `_git_time_since_commit` function.
729b19c Remove docker insert command
45e3f62 Add README for httpie plugin
3cc3084 Fix typo in $VCS_CLEAN_COLOR in adben theme
a98501d Grep bug in Agnoster
d686f8a generate with 'pod --completion-script' /cc thx to @ajmccall
a2f782e updated the command list to the latest cocoapod version (0.33.0)
6a1b832 No input for Update Check defaults to Yes
b7d041c Add rdrs method to reset the database(s)
5770ad5 Set AWS_PROFILE and use existing RPROMPT
3a77433 Add new boot2docker options
4224c2a Merge pull request #3494 from AlexTalker/short-host
51e366e Merge pull request #3339 from Xophmeister/master
4c21557 Merge pull request #3320 from moul/pr-boot2docker
3e88e53 Merge pull request #2999 from nicorevin/master
dac07b2 Merge pull request #2736 from felipec/fc/gitfast
35c7b7b Merge pull request #1951 from Neal/extract-ipsw
cb89fcd Merge pull request #2836 from ptamarit/chsh-etc-shells
11c7baf Merge pull request #3651 from mcornella/batch-close-3
a449d53 Merge pull request #2790 from ncanceill/plugin-git
da21092 Merge pull request #3945 from nicolas-brousse/homebrew-plugin
1b625af Merge pull request #3952 from lbraun/patch-1
cffeefd Add installation instructions to README
cc63928 Round 3 of batch-closing obsolete issues
7f232f6 Respect $ZSH_CACHE_DIR when creating fasd's cache
9c75551 Merge pull request #3887 from jadb/add-cakephp3-plugin
7416018 Create new aliases for homebrew plugin
0c8cb11 Add sublime text 3 paths to check list
743be91 Don't leak extendedglob to global environment.
7b478d7 Detect the .venv in any parent directory of the current directory
6504a2d Add CakePHP3 plugin
4d0aca4 Differing upgrade and safe-upgrade
2449e41 Add file completion as optional argument
de76905 Fix awk command. \s only working in gawk
5b75cc7 Many updates to git plugin (see #2790)
9a5e1a0 Use $EDITOR
03b8c19 Fix 'chsh' by checking '/etc/shells' instead of using 'which'
d60d4f6 Add alias of bundle clean
83cf909 Added aliases for docker compose
d80918b add markdown extension to README
24552f0 Add readme and add new alias cfpc: paste+compile+copy
4512161 Update template zshrc with HYPHEN_INSENSITIVE
1400346 Merge pull request #3825 from kennedyoliveira/master
cabb8f7 Merge pull request #3814 from willmendesneto/frontend-search-add-autocomplete
a315ddc typofix
8e8cdc0 Add coffeescript aliases: cf, cfc, cfp
66052e2 Add hyphen insensitivity
2dbf995 Fixing some issues where show repeated weird values, and fixed commands that need the container autocomplete without being running, like start, now it autocompletes showing all the containers so you can start without knowing the right name
5c9c373 Fix minimal.zsh-theme's check for in_svn and add support for mercurial
590d393 Add autocomplete for frontend-search
551d68a Fixes gradle autocomplete. Regex did not include subproject tasks before.
ff4663a Merge pull request #3802 from willmendesneto/patch-1
05f2ad3 fix stackoverflow url in search
b4729d3 Merge pull request #3792 from willmendesneto/frontend-search-add-new-repositories
7f0b577 Use the newest Vundle commands
eea77b7 Add stackoverflow link
75b9030 Merge pull request #3731 from NHDaly/patch-1
8301040 Merge pull request #3683 from jameswomack/fix_3640
d4918ae Fixed Typo.
1b6af54 Merge pull request #3692 from XerWandeRer/master
b28abd5 Merge pull request #3694 from houjunchen/django
0dde994 [Modify] Update django.plugin.zsh for Django 1.7.6
a414b5e Update _adb
c58c623 Use camelCase for npm aliases
e55c715 Merge pull request #3635 from wyldphyre/master
01ec37e Added missing 'stt' command alias
2e1b964 Add README.md file
6ddd44a Merge pull request #3622 from koddsson/notifier-plugin-if-order
656db4d Merge pull request #3623 from uberspot/nmap_feat
1308515 Re-order OS detection if..else statement.
0dc7b5c add nmap plugin with some aliases for scan modes
31e29e1 Merge pull request #3625 from tandrup/master
1dcc81c Merge pull request #3630 from designorant/grunt-plugin-update
8b45118 Update Grunt plugin to 0.1.2
7fc47e7 Fixing spaces in title and message given to bgnotify on OS X
677acc3 Merge pull request #3486 from ckesc/master
bd792f0 Merge pull request #3444 from lululau/httpie-pr
9aa11c3 Merge pull request #3458 from rexk/feature/go-plugin-upgrade
86a41a8 Merge pull request #3480 from dskecse/add-rails-rdms-alias
d28917d Merge pull request #1999 from akatov/carton
78cfe75 Merge pull request #3301 from t413/master
aa9325a Merge pull request #3025 from DanielOaks/ys-newness
b91ca24 Merge pull request #3394 from zghember/master
4353162 Merge pull request #2407 from mgalgs/gmt-compdef
237304a Merge pull request #2346 from zsiciarz/master
2728543 Merge pull request #3508 from joshtronic/patch-1
07ebfd8 Merge pull request #3497 from hsingh23/patch-1
9c0b643 Merge pull request #3509 from joshtronic/patch-2
ff6ca9b Merge pull request #3538 from TheLinuxKitten/grep-if-color
e2fd99a Merge pull request #3526 from DariusPHP/master
be63e8b Merge pull request #3518 from mfaerevaag/master
6809b42 Merge pull request #3541 from agios/tmuxinator
983c0c9 Merge pull request #3615 from mopsfelder/hgprompt
49a3dd1 Merge pull request #3608 from idjaw/master
c4c3d32 Merge pull request #3544 from tejasbubane/add-all-alias-in-git-plugin
7649c29 Merge pull request #2009 from akatov/grunt
9d0a9b8 Merge pull request #3559 from WarFox/feature/mvn-plugin-src-docs
d80f620 Merge pull request #3561 from jakobj/master
7c2d84f Merge pull request #3569 from avalent/master
2f23f33 Merge pull request #3577 from jameswomack/npm_convenience_aliases
377b1f9 Merge pull request #3580 from LukasDoe/master
e1bcd77 Merge pull request #3601 from nextgenthemes/master
57ed0cd Merge pull request #3598 from roderickrandolph/master
56bc1c3 Merge pull request #3609 from craigp/added_local_hex_to_mix_plugin
43bdea4 Removing say() function in perl plugin so that it doesn't overwrite OSX comand line utility. Closes #2562
ce607d3 Adding keystrong return to oascrupt per suggestion by @enzzzy. Fixes #2913.
6713aef Merge branch 'master' of github.com:robbyrussell/oh-my-zsh
aa16e18 Updating histoby-substring-search README to instruct user to load plugins via .zshrc. Closes #1832.
7b71dcc Merge pull request #3610 from bderrly/zle-active-check
d7837c6 Shorten the zle check and reset-prompt into one line.
efd6d4d Merge pull request #3597 from apjanke/no-dot-in-cdpath
a1de65e Removing  --no-check-certificate from README
5cd3182 Missed a few textile formatting spots
caac64c Few copy edits to README
8f1741d Moving README to markdown... and taking first steps at reorganizing it. Also updated the LICENSE to reflect 2015.
0a99ca0 plugins: mercurial: Update the order prompt vars are displayed
77140a2 Merge pull request #3603 from alx741/master
bc8abe5 Verify zle is active before trying to reset-prompt.
9bf1960 Merge pull request #3607 from mcornella/drop-insecure-url
aff01d9 Update readme.md
3936763 Markdown bolds to capital letters
8ce1245 added the 'mix local.hex' command to plugin completions
e10470f Adding ssh-config to vagrant plugin autocomplete. Was missing
152a751 Revert usage of install.ohmyz.sh URL, until HTTPS support.
223197b Merge pull request #3533 from maff/chucknorris-fortune
8d561aa Merge pull request #3573 from mcornella/fix-taskwarrior-first-completion
dcc08b0 Merge pull request #3545 from BilalBudhani/ember-cli-plugin
9a58e8d Merge pull request #3578 from ctroncoso/patch-1
67fff60 Merge pull request #3589 from miguxbe/master
84a318b Merge pull request #3590 from voronkovich/master
5b429b6 Merge pull request #3596 from kossmac/master
24ebf9c Merge pull request #3591 from zmwangx/ls-variants
c5e8713 Merge pull request #3594 from pi0/master
33900df PLUGINS: vi-mode: allow ctrl-h, ctrl-?, ctrl-w for char and word deletion
099246d PLUGINS: vi-mode: allow ctrl-p, ctrl-n for history navigation
d8b9932 Update readme.md
660eeb1 Update readme.md
3120b9a Update readme.md
f50b3fe Create ubuntu plugin, based on debian plugin.
6b29aab Create readme.md
8b5950b Fix: "\s" is a gawk-specific regexp operator.
23d4e7e Merge pull request #1 from roderickrandolph/fix-return-status-arrow-color
46e6e2e Fixes incorrect prompt arrow color
6ccf67a Do not put explicit dot in $cdpath, since it causes problems on Cygwin due to an underlying zsh bug.
cd36ded added stats command to docker plugin
7c73a3a Laravel 5 support
2790a5e Bring back -h option to ls variants
8cf04ed Fix echo nothing if $SHORT_HOST doesn't exist.
b39dbec Fix tmuxinator completion for symlinked dirs
ec9525b Add initial JHBuild plugin support
7c00bcd Modify theme to optimize the usability, when you use solarized dark as shell color scheme.
4b20bfe Fix first-tab completion in task command
5ee5403 Merge pull request #3572 from mcornella/fix-apple_terminal-newtab-again
3704fbb Extract CWD notifier back out of auto-title hooks
68955f1 docker containers based on defined names
6967393 Add convenience aliases for installation of npm modules
f1d12c5 Add .ipsw to the extract plugin.
3b6a695 Merge branch 'master' of github.com:avalent/oh-my-zsh
3ba10ad Added cab autocompletion to the cabal plugin.
ef7e53a Merge pull request #3568 from mcornella/apjanke-title-disable-check
6aa9720 Merge pull request #3567 from mcornella/bsandrow-topic/virtualenvwrapper-ubuntu
2f76919 Merge pull request #3563 from mcornella/fix-unicode-locale
0edf416 Temporarily delete over-engineered solution
448e966 Fix for bad LC_CTYPE entry
732c7b8 Simplify adding workon_cwd to chpwd hook
b629116 Organize error checking in virtualenwrapper plugin
4161aa4 Fixing virtualenvwrapper plugin for Ubuntu (and Debian)
8830f65 Merge pull request #3467 from mcornella/fix-composer-plugin
f0bbd30 Merge pull request #3443 from mcornella/better-web-search-plugin
aab7532 Merge pull request #3566 from mcornella/pfault-master
9b8e88d Merge pull request #3483 from ai/fedora-not-found
d2667bd Merge pull request #3353 from mizabrik/master
17216be Merge pull request #3143 from roramirez/theme-linux
5217716 Merge pull request #3479 from faceleg/patch-1
49b4e67 Merge pull request #3547 from martong/vi_mode_trapwinch
0a0a278 Merge pull request #3413 from mcornella/fix-dircycle-plugin
412a92e Merge pull request #3141 from muggenhor/sudo-maintain-cursor-pos
ff823f8 Merge pull request #3564 from mcornella/LFDM-cleaning_lib
2e41d06 Use quoted $TERM value everywhere
b7e5dd3 Quick-fix code style
4fc6dcc term: Move DISABLE_AUTO_TITLE check to hooks
f04246a rkj-repos: code cleanup and updated with functions from lib/git.zsh (thx mcornella)
c3940cf Fixed breakage in new git repo without commits
6fb8661 Remove composer.json file requirement
ef220f0 Add aliases for composer global
5f4e8e5 Allow completion for 'composer.phar', not only 'composer'
0cc3afe Fix get command list for recent composer versions
02d7568 Force using https in Yandex search engine
e8daf81 Fix yahoo search URL in web-search plugin
c458850 Add support for cygwin open in web-search plugin
adaea31 Silence nohup output in web-search plugin
80ba54a Add Yandex support to web-search plugin
80d856e Clean up web-search plugin logic to allow easier changes
2193135 Clean up appearance lib file and redundant `colors` calls in other files
51946eb Implement deletion of sl alias as per #3055
4b4292a Fix a typo
724143c Deletes dot aliases from common-aliases.
83c4e06 Moves a bindkey call from misc to key-bindings.
101149b Moves remaining aliases to misc and deletes file.
d33b0aa Refactors history alias and moves it.
ace9884 Pushes autoenv code to its plugin.
25b1cd6 Brings all directory stuff to directories.zsh
282240b Account for iTerm2 sent keys in dircycle plugin
999bab1 Emulate zsh in zlewidgets instead of static setopt command
e93fd93 Run pushd command directly and trigger prompt redraw
5fe22fc Clean up and fix +1/-0 syntax to work as expected
13e5afe Merge pull request #3164 from nailor/fix-deactivate-bug
811f1f9 Merge pull request #3329 from capeterson/master
935f191 Merge pull request #3419 from mcornella/fix-cake-target-cache
c3eb548 Merge pull request #3525 from apjanke/term-pwd-in-precmd
349493a Fix for ant targets with leading dash
013b2bf Change ant target enumeration
7f636ba Backwards logic in newer check.
6bccb1a removed superfluous vcs_info_msg in trapd00r theme
fc606d9 Added alias for downloading maven dependencies' sources and javadocs
2e0da68 add chucknorris plugin
7de44db Added trapwinch to vi-mode plugin.
431faa9 Creates Ember-cli plugin and Adds its aliases
8cb97d6 Add alias for git add --all
be70280 Reword comments on termsupport internal functions.
f2130fa Test if --color=auto is a valid option for grep
8ccfc3d Removing 'local' usage to prevent issue when installed with antigen
e604587 Switch newer-than logic to get the desired behavior
550ccca Merge pull request #3478 from stephenrjohnson/custom_cache_dir
1ac2f86 Merge pull request #3493 from NicholasTD07/patch-1
147ebd6 Merge pull request #3490 from lmartins/master
65afcb7 Merge pull request #3489 from sunlight07/patch-1
c4d3de1 added server:run alias
5f79ab5 Move chpwd update output from chpwd hook to precmd to avoid contaminating script/function output
4533c7a [wd] Update to v0.4.1
49549d9 Update git-hubflow.plugin.zsh
fd3a348 Update git-flow.plugin.zsh
b2f8764 Adds completions to wp-cli plugin
5cb0ed9 Fast installation time by shallow copying git repo
3abc2a4 Fix Plugin commands
3c49983 Update django.plugin.zsh
5b90092 Sublime Text plugin: added sst alias for sudo run sublime
f997ed7 Add Fedora support for command-not-found plugin
a55a313 Add rdms alias to rails plugin
c78277f Merge pull request #3429 from apjanke/termsupport-apple-chpwd
ceb42ec Update /home/srj/.oh-my-zsh/cache references
bf7b916 Allow custom cache dir
833e6f5 virtualenvwrapper: Deactivate only if in virtualenv
8105d4a Merge commit '175b4a807383530aa75145b5b6fdedb3ce1f11f2'
8790fa3 go plugin upgrade for version 1.4
957564a Add completion for httpie
7295e38 termsupport: add chpwd hook for setting pwd in Apple Terminal.app
175b4a8 Merge pull request #3407 from rawberg/mira-theme
da1ca88 Merge pull request #3404 from ekaragodin/master
0c47d8c Merge pull request #3146 from typekpb/tmux-aliases
304e8f0 Merge pull request #3338 from eripa/chruby_fix
b0ad3d7 Merge pull request #3352 from benjaoming/virtualenvwrapper_workon_unset
fe2ccb3 Merge pull request #3397 from peteches/master
c63f27a Merge pull request #3412 from mcornella/feltnerm-patch-1
5167450 Merge pull request #3424 from bergvandenp/docker_exec
4a56c6b Merge pull request #3303 from iml/brew-update
1b2d7fd Merge pull request #3362 from emarashliev/master
dc9af89 Merge pull request #3372 from bbiao/compatible-with-new-autojump
9b35203 Merge pull request #3409 from unixorn/prevent-variable-clobbering
9e794a5 Merge pull request #3410 from Superbil/master
cd845a1 Merge pull request #3417 from stof/patch-1
9e5f0f0 added exec command to docker plugin
16d0768 Quote path in case $HOME has a space in it.
f7deb52 Update the list of Heroku Postgres commands
8355359 fix(tools/check_for_upgrade): Don't source profile
7931d5c Fix aws.plugins.zsh check rule
1978a09 Revert PR #3359 as this is breaking stuff for many folks. Need to rethink how we handle system defaults differently on this
00ff1bb Updated Yii2 command completion
02d6477 added node- before node version for consistency
77da209 mira theme shows active node, ruby and java versions
7488e9b Add yii2 readme
0a96bb1 Merge pull request #2094 from frantzmiccoli/phing-fix
fe75c96 Merge pull request #3399 from ryan-robeson/add-itunes-shuffle-command-to-osx-plugin
77bfdc6 Merge pull request #3395 from vmalloc/patch-1
07c013c Merge pull request #3389 from bubenkoff/add-current-bookmark-rkj-repoz
885e818 Merge pull request #3359 from unixorn/dont-clobber-histsize-and-savehist
eced76e Merge pull request #3326 from DanielFGray/master
311f363 Merge pull request #3403 from mcornella/fix-grep-library
8efdbef Merge pull request #3366 from ratza/master
6fd0b73 Merge commit '141c2e593401f245a9f9bb0799ada8bf14b677d7'
08b9f8d Added Yii2 command completion
dd27087 Change to alias and remove deprecated GREP_COLOR
7118431 Tidy up the grep.zsh library
0190eb0 Use unaliased grep in flag check
cf586b5 Ignore .bzr folders in grep too
0bd3c99 Extract VCS folders definition to avoid repetition
141c2e5 Merge pull request #3344 from wrboyce/custom-lib
43a2e24 Add itunes shuffle command to OSX plugin.
1d2c1e8 Fixed output issues webith websearch plugin.
9677cfb Fix dircycle plugin
6f70d28 Update theme "jispwoso" to support ret status and git
9bab8cc add current bookmark to rkj-repos theme
ed029f1 allow overriding lib/*.zsh in custom/lib
a19d1d1 autojump installed from github has mv the autojump.zsh to $HOME/.autojump/share/autojump/autojump.zsh
011f25d Fixed command autocomplete for Symfony 2.6.x
575bb91 Added Xcode alias for deleting Derived Data.
5bf7157 Existing code indents with spaces, not tabs, conform.
1ebc98b Don't clobber HISTSIZE or SAVEHIST if they're already set
c6a8b2e Save ZSH path in newly created .zshrc
4b05e54 Throw an error message when $WORKON_HOME is not set
43aa378 Merge pull request #2448 from gawashburn/master
5acfdf5 Merge pull request #2871 from wrboyce/extract-pigz
4610add Merge pull request #3092 from MWers/aws-brew-issue
4c4f47a Merge pull request #3265 from thii/fix-yosemite-broken
60a41a8 Merge pull request #3283 from jaapz/master
9f4dfc0 Merge pull request #3309 from jarinudom/superjarin
db8eacf use pigz if available in extract plugin
663d432 Minor cosmetic fix to minimal theme
1dfadc7 Fix chruby plugin to not complain if chruby is *not* installed
b6b1dd3 Fix Yosemite broken zsh where $PATH var does not get appended correctly.
0222e77 Merge pull request #3333 from mcornella/fix-git-hide-dirty
6a496d2 Merge pull request #3323 from alfss/fix-pj
a301f56 Switch back to oh-my-zsh.hide-dirty setting again
0c04470 [~] fix plugin pj
00ec11d ignore any grep aliases that might be defined
923d2c8 Fix autojump script to support Nix installations
95d5f2c [boot2docker plugin] Initial version
d0f3fb3 Merge simplified superjarin theme
fd69c34 Add screenshots to readme
98fc8dd Fix for OS X when no window id is returned (like on the desktop)
8bd8597 Remove deprecated brew commands, update core commands
cbec1d7 Add window ID fallback for windows.
3d376bb Fix renamed method issue.
df5b09e Merge pull request #3299 from apoxa/fix-profiles
1125333 Fixes the profiles-plugin
7f75bb9 Merge pull request #3223 from mcornella/use-special-vars
adafe27 add cygwin windows support with notifu, add to readme
0b0cc2c Fixed math on linux, removed debug echo.
e16d3e4 Add bgnotify plugin, a cross-platform background notifier!
95d795e Change all hostname calls for $HOST or $SHORT_HOST
4310a15 Change all pwd calls for $PWD variable
74177c5 Change all whoami calls for $USER variable
7034b01 Merge pull request #3213 from nikhgupta/features/fix-emoji-clock
8a51bfd Merge pull request #3108 from mfaerevaag/master
35f1a23 Merge pull request #3131 from halilim/remove-j-alias
510055a Merge pull request #3081 from pavoljuhas/master
6118446 Merge pull request #2974 from elliottwilliams/patch-1
e423ca0 Merge pull request #2976 from shammellee/patch-1
57ff83d Merge pull request #2946 from moinakg/master
0f7e5e4 Merge branch 'simonbuchan-master'
81004df 2928 merge conflict
1b65c55 Merge pull request #2959 from crkochan/fix_rake_command
4eff792 Merge pull request #2648 from dfarrell07/master
160abc9 Merge pull request #2323 from michaelorr/slow-git-fix
2984d2d Merge pull request #2168 from riyad/modernize-virtualenv
ed01122 Merge pull request #1604 from franklouwers/master
548b9c4 Merge pull request #3224 from Neal/xcode-simulator-fix
ba6bf24 Merge pull request #3230 from willmendesneto/fix-compass-doc-search
c0905fd Merge pull request #3226 from mcornella/fix-plugin-gitignore
eae7005 Added VIRTUAL_ENV_DISABLE_PROMPT to steeef.zsh-theme
b6012bc Update to the upstream smart-change-directory.
071de5f Make the simulator alias work with older Xcode versions as well.
b452caf Follow-redirect and silent mode curl throughout gitignore
04d1428 Fix gitignore curl, should follow redirects
69a0b28 Fix misspellings in gitignore plugin
b9a11b1 fixed URL on github.io
7f07fac Merge pull request #3252 from mcornella/fix-auto-named-dirs-prompt
36e05e9 Don't set auto_name_dirs because it messes up prompts
9f801ff [wd] fix space in path
6f1eb08 Fix error using compass search alias
d794a50 Update path for the iOS simulator.
71ee0d7 added support for GNU version of `date`
3a39732 Change to epoch target in days instead of seconds.
90762ee Convert epoch_target from days to seconds.
5f38a53 Update Solaris changes to use OSTYPE and zsh datetime  module.
b0013ce remove path not found for linuxonly theme
eb05497 additional tmux aliases
1e7c674 sudo: maintain cursor position
7a5d68c Remove j alias for autojump
b509385 [wd] Minor bug fix in show command
6855dd4 [wd] New minor version (v0.4)
96e4e5d Merge pull request #2811 from stucki/multiple-vagrant-machines
4bba11d Merge pull request #2744 from docwhat/ostype-not-uname
ffe8ce5 Merge pull request #3095 from robbyrussell/revert-1504-master
5e25913 Revert "Exit early from git plugin if not in git repo."
87fb118 Changed brew cmd to properly report if awscli is installed via homebrew
ae901fa Support dynamically defined Vagrant machines
a8ef111 Merge pull request #3072 from clippit/patch-1
dd644a1 Merge pull request #2743 from docwhat/issue-2155-scutil
ca0331d Merge pull request #3087 from hacfi/symfony
8d2dd8c Symfony2 plugin autocomplete for app/console and bin/console
677d8b1 Symfony2 plugin look for files only
ed6c2c9 Symfony2 plugin use first console found
da94f45 Merge pull request #3073 from ajhenriques/master
d21e3ee Merge pull request #2996 from joshmedeski/master
eca6dca Merge pull request #3071 from halilim/patch-4
003f367 Merge pull request #3070 from stucki/vagrant-vm-list-fix
a796a67 Merge pull request #3077 from robbyrussell/revert-3068-patch-1
a910aef Revert "Add Composer's local binaries to PATH"
7a53166 Merge pull request #3076 from robbyrussell/revert-2766-add-contributing-file
39fb6c9 Revert "Add a CONTRIBUTING file to instruct people on issues and pull requests"
fdba0f4 Merge pull request #3069 from johnjohndoe/feature/adb-autocompletion
b8e10ca add wp-cli plugin readme
f0d5cfd add git difftool alias (gdt)
9c1255d fix missing add-zsh-hook in pygmalion.zsh-theme
2b83acc Use the library function for ruby prompt
e7fdb02 Improve support for Vagrant VM definitions
65f97a6 Add README.md for adb-autocompletion plugin.
23bbf3c Merge pull request #2986 from Guerki/master
6cb8b72 Merge pull request #2995 from admpsktt/patch-2
56d9acf Merge pull request #3044 from alexshd/patch-1
99fde07 Merge pull request #3000 from bigtiger/add-git-add-patch
1f9b24e Merge pull request #2997 from cchacin/master
4438acb Merge pull request #3004 from admpsktt/patch-3
eae6c38 Merge pull request #3010 from celsomiranda/patch-1
244a6f2 Merge pull request #3011 from cherrry/master
58491bd Merge pull request #3012 from abstractj/git-gpg-signatures
74e7510 Merge pull request #3014 from allister-lundberg/git_alias_gitbranchremote
c1cd9cb Merge pull request #3049 from strycore/master
fc365f5 Merge pull request #2963 from bezoerb/symfony2-autocomplete-fix
5e842cf Merge pull request #3041 from takac/master
6908827 Merge branch 'master' of github.com:robbyrussell/oh-my-zsh
671bd0c Link to swag in installer... shameless profiting
9f8d7d8 Adding link to the store for swag in upgrade process
c22658e Merge pull request #3059 from chrisfsmith/feature/bbedit
b88d682 Merge pull request #3060 from chrisfsmith/feature/marked
3577fba Merge pull request #3058 from chrisfsmith/feature/textastic
c207c83 Merge pull request #1755 from johnjohndoe/feature/adb-autocompletion
9bf5b90 Adding README.md and renaming plugin
c07bf98 Merge pull request #1504 from jediant/master
d7f77f8 Adding README.md
a8dad6f Adding README.md
6caed46 Merge pull request #2941 from mcornella/fix-pass-completion
3e30b4d Merge pull request #2922 from ncanceill/easymerge
fcd55f3 Merge pull request #2845 from mfaerevaag/master
958c8f4 Merge pull request #3045 from fornwall/remove-usr-bin
be578d9 Merge pull request #3053 from jingweno/patch-1
a5cbd31 Merge pull request #3065 from posva/tmuxinator-update
686f29f Merge pull request #3052 from DariusPHP/master
a1c5abf Merge pull request #3055 from sachin21/remove_alias
4641130 Merge pull request #3068 from nervo/patch-1
b43e8ab Merge pull request #3057 from igorzoriy/master
6d5d67a Merge pull request #3067 from tacgnol/AWS
e425ddc Merge pull request #2766 from mcornella/add-contributing-file
14f055d Add Composer's local binaries to PATH
f492207 Amended to source the original aws_zsh_completer.sh rather than the mangled version installed into $(brew-prefix)/bin if using homebrew installed awscli on OSX.
cd98283 tmuxinator completion update: Current completion plugin isn't up to date and #2075 PR, which is also the completion plugin on the official tmuxinator repository, doesn't work. Thus this should do the trick for the moment. Also suppressed an error when no completion is available
142a6c7 Fix pass zsh completion and autoloading
17dd579 Update pass completion to upstream
25a3244 Added a link to the file's license and added the commiter as plugin maintaner.
1e2abe5 Categories of issues in oh-my-zsh (work-in-progress)
1aadd63 Add CONTRIBUTING.md file general structure
1b4d426 Adding quotes around $1
9be8101 Adding quotes around $1
362f2a5 Adding quotes around $1
325c187 Adding Textastic plugin
9eb2118 Adding Marked 2 plugin
e20ce81 Adding BBEdit plugin
ee33cee Added 'uninstall' command to brew completion
ac053f4 This alias is conflict cause
dc9e176 Fix missing add-zsh-hook
5d6c73d #git plugin git diff-tree --name-only added
91ba6d9 Don't try running chsh if user already runs zsh
dac2a6e Replace /usr/bin/env with env
eee7345 Resets the font colour to original
df1b0b3 Update jira plugin to allow lookup of issues
49e10ae Make 'ys' theme use hg repo info too
9a0196d New alias for git plugin: gbr == git branch --remote
45abe76 Inclusion of aliases for sign git commits and tags
99e74b0 rounding to emoji clock
7d208be bugfix: two wild apostrophes
78a7c0c Add support for local aur databases
8ad9122 Added _files to complete all arguments following the first as files
89f1d94 Added autocompleting plugin for Android Debug Bridge (adb).
fdb3039 Update half-life.zsh-theme
397a9f7 Update README.textile
4f1ee6c Add gap (git add --patch)
8a43d35 fix paclist() for non-english locales
1b7a3ea Merge pull request #2993 from mittalabhas1/master
36e1cff Merge pull request #2994 from admpsktt/patch-1
961ca14 TomEE maven plugin + integration-test in common life-cycle
80323ec WP-CLI plugin init
e5ac500 Update rvm.plugin.zsh
fbdacbf Update README.textile
0174fee Update README.textile
65ce765 Merge remote-tracking branch 'upstream/master'
db3dd6d Run Web-search as a Background Process with Nohup
63bae2a Use $OSTYPE instead of uname to speed things up
00b21d5 Trust but verify 'scutil' to return ComputerName
0e00f0b typo
73212de Fix osx function: "not valid in this context"
207b6a1 Merge pull request #2969 from nicolas-brousse/patch-1
877d55c Update brew.plugin.zsh
bb928b5 #2914 fixed symfony2 autocomplete
39a1e2a gem plugin: added _files to install command
7478b75 make sure cache dir exists, just like log dir
5756ea0 Revert "specify python2 in shebang"
a6b655f [wd] v0.2.2: Added MIT-License
cea29ff Merge pull request #2914 from bezoerb/symfony2-general
15c5d59 Merge pull request #2923 from Kriechi/bundler-fixes
bf134e9 Fix for recusion limit hit for _rake_command alias
346f6b7 [wd] v0.3.1: Improved completion and bug fixes
4b99742 add BUNDLED_COMMANDS functionality to bundler plugin
34bc91e added Bundler readme file
b007fee add pry to bundler-commands
11f0d27 add spring to bundler-commands
cfc98d3 remove double bundle exec
20c84ea Add 'outdated' and 'platform' completions to bundler plugin
f8ea927 remove berkshelf from bundler-commands
fdbfd41 remove ruby from bundler-commands
f5e69c6 remove spin from bundler-commands
a22e025 remove foreman from bundler-commands
c4eec0b add sidekiq to bundler-commands
d29c53c split bundler-commands into seperate lines
c925aab Merge pull request #2885 from tsujigiri/bundler/run_binstubbed
6eefbe2 Merge pull request #2935 from kubamarchwicki/mvn-plugin-spring-boot
14439e0 Merge pull request #2834 from jbdatko/master
01da53e Merge pull request #2828 from r3dDoX/master
9f8c5d0 Merge pull request #2745 from nicolas-brousse/patch-1
decc0d1 Merge pull request #2670 from trrbl/master
4a36bb1 Merge pull request #2108 from rimenes/add-status-reload-to-postgres
f9bb10d Merge pull request #2940 from hayd/status_code
7e8177b Merge pull request #2953 from jjcomer/master
18eb193 Merge pull request #2955 from SFrost007/jira-prefix
2faba65 Merge pull request #2956 from SFrost007/wd-typo-fix
9d76784 Add support for jira-prefix configuration file
6adc891 Fix typo in warp directory plugin
392af39 added cache:warmup alias
6b3a723 Fix typo in docker plugin
5e328e3 Solaris portability tweaks.
aa82bd7 terminal party show exit status with color
8d762e4 Spring boot autocomplete
2927ce3 Fix POST_1_7_2_GIT check for parse_git_dirty submodules.
676fb4e Fix parse_git_dirty() when status.branch is set.
5728a56 Merge pull request #2892 from willmendesneto/dev
14ebcc8 #2893 generalized symfony2 console directory
4131a59 Merge pull request #2827 from ncanceill/easymerge
480ca22 Make bundler plugin run binstubbed cmd if existing
08632bb Basic support for Docker related commands.
ce9ec85 Add Composer's global binaries to PATH
dbca185 Add /usr/bin/subl path for who has linked sublime text there
75c02dd Plugin jump: autocompletion for numbers and dots
bc2e3ff added useful mvn aliases
f2b81e2 Add spring to bundled commands
c5d9fc9 git_prompt_info: ignore git-config errors
49161e7 Add missing `command` wrapper for git
340da08 Add missing quotes to within-bundler-project function
82d557a Add pip2 and pip-2.7 support to pip plugin
89a5075 Add pip3 completion support to pip plugin
45b6129 Add new plugin: "frontend-search"
9c11202 fix `-nt` usage
09fdf76 ignore usernames beginning with underscore
7fbbf28 return 0 when not a git repo before, 128 was returned, which could display an error, but out of a git repo this should exit silently fixes #2226
1274a5e Added cabal freeze subcommand.
eb06484 added emoji plugin to make it easy to display emoji characters in the terminal
999bd35 fix root mode not working in bureau
1ab0f77 Updated cabal commands for Cabal 1.20
859a37d Fixed typo in cabal plugin.
d3acea3 Updated cabal plugin with Cabal 1.18 commands.
50fe95a Autojump plugin: check user local installation first.
519d37f Vundle plugin now works with submodules.
aee8877 fixed rvm warning
99c9dbe New alias for repo: ru and rst
e04d3e0 Add startproject to django command completions
f7948ac Adding compression to rsync commands
f82092a Add a command to show unresolve files in merge
67d74cb Don't override ZSH_COMPDUMP if already set.
fbf4a78 Show user prompt in gnzh theme regardless of UID
1232485 Added ssh-like mosh window title
a9e1d9a Cancel upgrade if $ZSH is not writable from #2360
de41dee Add alias for container:debug task
e5ed07e specify python2 in shebang as suggested in #2382
7297b44 too many plugins = slow init warning
3cdfdad use ls instead of find to avoid incompatibility with gnu find
b1c97bc Fix comparison used to determine if the cache is outdated.
ac1a321 add gfa alias for recursive formatting inspired from #2018
76e23e6 Fix permissions on wd plugin continuating #1923
b569273 Removed unnecessary execute permissions for some plugins
3c41da3 Update colorize.plugin.zsh
bce7497 drop the foreach, make it even shorter. thanks Marc Cornellà!
3fac127 Correct wrong plugin file name
97ab436 Fix path for colemak plugin
6bf7f39 Steeef theme checks untracked files instead of directories
80828cd Update plugins/rbenv/rbenv.plugin.zsh
7bb42fb Corrected syntax error in github plugin's empty_gh function
b7f51bb Adds itunes vol command.
6fc241b extract plugin will unzip *.sublime-package files
5146931 added prefix/suffix variable for customizability
1ad1c52 Move aliases to 'custom' section of .zshrc template
59c8fcc added new function to get number of commits ahead of remote
3c485db replaced hardcoded origin/{branch-name} with @{upstream} which gets the upstream branch since git 1.7.0
c0b094c Fix function/alias naming clash between bower and bundle plugin
b64e695 Ordering nocorrect aliases alphabetically
cd8d5c4 Defining nocorrect aliases only when ENABLE_CORRECTION is "true"
4c64cf4 Replacing DISABLE_CORRECTION with ENABLE_CORRECTION in zshrc template
8d976e0 fix(tools/check_for_upgrade): Don't source profile
5e601d6 Fix dud alias. Switch --max-depth for just -d
c1f5a17 This is already done in lib/theme-and-appearance.zsh and supports Darwin/BSD/etc
9590b96 Write the update file even if `CLOBBER` is unset.
8355233 Fixing typo.
0b4bf90 Minor markup edits
2c19c0e typo, fixes #1806
3913106 Merge pull request #2787 from irnnr/plugin-vagrant
8ed8005 Improve consistency, remove dots at end of command descriptions
30d9952 [FEATURE] Support vagrant global-status
7f8ee9a [FEATURE] Support Vagrant Cloud commands
38fe100 [FEATURE] Support Vagrant Share
236c8de [FEATURE] Support Vagrant 1.6 version command
33ef34b Fix gmt compdef
73bf940 Update brew.plugin.zsh
5918d91 gitfast: back-port prompt fix
6a5c8fb gitfast: update to upstream v1.9.2
eafd5f3 Merge pull request #1635 from jimhester/per-directory-history
11bf1a3 Merge pull request #2681 from mcornella/fix-zsh_reload-plugin
4509228 Merge pull request #2728 from benwong/patch-2
59de9aa Merge pull request #2671 from ukrutt/master
01dcf51 Merge pull request #2502 from UniIsland/patch-1
5eb5f71 Merge pull request #2511 from FloFra/master
8aa6e6a Merge pull request #2650 from kemko/patch-1
ee31abf Merge pull request #2729 from grodzik/master
3b830aa Merge pull request #2693 from javiertejero/master
7949a1c Fix `docker rmi` tab completion
cee5228 Fix for Python3
9385b3e set exclude-dir or exclude grep flags only if available
fcfa323 Use cache folder inside $ZSH, delete with unaliased rm
6f3cf19 Spelling correction in itunes control function.
a9061f3 Merge pull request #2633 from redsunsoft/agnoster-theme-git-mode-addition
f8f0126 Merge pull request #2685 from delynn/patch-2
7d696f7 Remove mailcatcher
00d6ef8 Merge pull request #2329 from pstadler/brew-cask
f46d06d Correct redirection of output from 'hash'
b2ea7d3 Add Ruby 2.1.1 support to rvm plugin
70dfb91 Merge pull request #2663 from bobmaerten/docker-autocomplete-updates
fe73f8d Merge pull request #2651 from jehrhardt/fix-emacs
175310a Merge pull request #2661 from mcornella/fix_title_tab_percent
ae0c650 Merge pull request #2659 from simonc/allowing-pow-path-with-spaces
861d380 Merge pull request #2658 from leifcr/rake-fast-issue
27c28a9 Merge pull request #2647 from bobwilliams/master
78967b6 Merge pull request #2656 from philenotfound/master
a6b9597 Merge pull request #2652 from lukehorvat/patch-1
a5f6f72 Merge pull request #2660 from KevinBongart/add-readme-to-rake-fast
9c1241a Merge pull request #2662 from aeriksson/master
400643f adding urldecode_json to compliment urlencode_json and updating readme.md; slight tweak to urlencode_json from previous commit
0605d53 adding urlencode_json and associated README.md details
53323ab Added git mode support for merging, rebasing, and bisecting
76e1edf Matching autocomplete for Docker v0.9.1
9650861 Fix broken reverse-menu-complete keybinding.
b2ce306 Simplified gallois RPS1 setup using some helpful scripts
982b534 adding the is_json tool and associated readme.md details
5137e0e Escape % in $CMD variable
7b08f49 Add README file to rake-fast plugin
015b742 Allowing path with spaces in pow plugin
9eadaf5 brew-cask plugin: use spaces instead of tabs
aec73f6 Merge branch 'master' of github.com:philenotfound/oh-my-zsh
4446787 New aliases for 'apt-get' and 'aptitude' as they were overwritten by later aliases
64bb1a2 adding support for node
a3b357a Adds command line aliases useful for dealing with JSON
94a5cc5 Updates spectrum.zsh
732bca0 $ZSH is the OMZ installation folder, not configuration
2697a18 mention $ZSH_CUSTOM as suggested in #2295
ffd5cb2 suggest setting $LANG to fix #1286 and fix #1823
c0e3c55 Fix export syntax of $GREP_OPTIONS
c1ada7a Rendering the 'vagrant box (remove|repackage)' completion code independant of Vagrant implementation details.
8194aa9 application completion
bc02c28 library completion
0f32083 in hindsight, this is probably a bad idea
ee3a20a completion of targets
fd3d5bf instance and cluster completion
6d7d131 node completion
f88b6bd help command, node completion
95f8319 added _files values for certain options
9b4cf96 completion options
f644d2e added alias
4dcdd13 added completions for all known arguments to all known commands
7daf2f4 apparently, this file must exist for the plugin to load
1988958 added completion for all asadmin subcommands
d2a765e avoid VCS folders
d1323ed Move example plugin to the custom plugins dir.
7a94b76 Add completion for pip install -r - so that it autocompletes requirements filenames
ee8f9ee Added an <esc> to the begining of everything. I ran something when I was in insert mode once and all it did was shove !args... into the buffer.  <esc> first.
46c2af3 Updated the README to include documentation on the postCallVim callout
5a81fda Added an optional callout to the end of the interaction function. I put it in to allow me to put the window focus on MacVim / GVim depending on the different OS I happen to be on
83071a1 Fixed: If you callvim on a non-existant file with a relative path, the CWD of the running gvim process is used, and that's not right.  We use the PWD explicitly instead, in this case
cdea478 A plugin that makes it easier to interact with the (single) running instance of gvim
8d1fa09 command to restart pow process
640e5da added powed command to list pow urls
48e53fb fix gnzh theme to detect local rvm installations
c70fcd6 Added link to wiki page for plugins to README.
95ffb16 Add gem build autocompletion
b578eea `setopt append_history` is not necessary.
48f8f28 Plugin: Rake-fast: Support both *nix and Darwin
37e619e New aliases for 'apt-get' and 'aptitude' as they were overwritten by later aliases
5f09d0f Fixed typos + made wording more consistent in zshrc.zsh-template
5303793 history-substring-search: bindkey now checks if terminfo is available first.
64c3ce3 adding xargs -0 to node aliases
f8890f5 updated readme.md and using tab char for formatting with node
8db3e63 bug fix for node pp_json version
c451ff4 Add check for display list equals nil
3976b93 Fixed which output at each new shell creation
1fc40c6 updating README.md
3bae9dd adding README.md for jsontools
ffc17b6 Merge pull request #2563 from bobwilliams/master
27965fe Merge pull request #2390 from LFDM/updating_spectrum
47ad242 Merge pull request #2645 from ncanceill/template-zshrc
1ca4e21 Merge remote-tracking branch 'upstream/master'
6889dfa $ZSH is the OMZ installation folder, not configuration
04c2d29 mention $ZSH_CUSTOM as suggested in #2295
f9ad368 suggest setting $LANG to fix #1286 and fix #1823
315099d Merge pull request #2643 from mcornella/patch-1
d70e732 Merge remote-tracking branch 'upstream/master'
12e30fa Fix export syntax of $GREP_OPTIONS
178b522 Merge pull request #1302 from cybozuty/master
c4727ab Merge pull request #1262 from fred-o/glassfish-plugin
393c805 Merge pull request #1162 from nXqd/patch-1
668886e Merge pull request #1117 from Peeja/move-example-plugin
5540daf Merge pull request #967 from wjlroe/pip-requirements
7550436 Merge pull request #1022 from derekwyatt/master
ae1f331 Merge pull request #1005 from cmar/powed
ae1a9e2 Merge pull request #995 from wting/fix_gnzh_ruby_detection
fff49ae Merge pull request #990 from tommorris/master
d4e907b Merge pull request #973 from dlee/gem_build
9eacd7d Merge pull request #750 from blueyed/history-drop-default-append-history
d41c588 Merge pull request #672 from eMxyzptlk/zsh_reload
d8a5fff Merge pull request #662 from walle/add_autocomplete_for_gas
95302af Merge pull request #646 from whittle/master
319aafc Merge pull request #2618 from bdubertret/fix-gwip-norm
23fe53e Merge pull request #2634 from danchenkov/master
73fd066 Merge pull request #2638 from miguelfrde/irb
d968397 Merge pull request #2605 from mhauserr/patch-1
1235103 Merge pull request #2615 from erbridge/fix_virtualenvwrapper_lazy
c97aff8 Merge pull request #2616 from Bounga/master
e0e4c0e Merge pull request #2620 from reedriley/master
2e74fe7 Merge pull request #2619 from korylprince/master
610655e Sort bundled commands alphabetically
2403b05 Merge pull request #2440 from m0nah/master
e742073 Merge pull request #2510 from pavoljuhas/master
2e06412 Merge pull request #2531 from KevinBongart/rake-fast
6d616de Merge pull request #2637 from aforty/master
184e93c Merge pull request #2627 from loxley/add_knife_vault_cmd
c98883f Merge pull request #2631 from AntoineD/master
c137c7b Merge pull request #2639 from jieryn/master
1509ac9 add common video formats FLV and WEBM
c3150ed Add irb to the list of bundled commands
69fa67c Merge pull request #1 from KevinBongart/brew-cask
6a8f83b Add new brew cask commands
32a7824 Added a forward-delete fallback to bind Delete key
5f31190 atom plugin
c5413d7 Aligned comments
55a9d68 Update key-bindings.zsh
e537ee9 added terminfo keys verification
ef343ee Fix dirpersist plugin
fb2d6eb Fixed errors if acpitool isn't installed on linux
645fceb Add chef-vault knife cmd support
c1c107c Add scd plugin for smart change of directory.
6952105 Merge branch 'master' of https://github.com/robbyrussell/oh-my-zsh
d3babe0 Don't show useless '[]' when chruby_prompt_info is empty
a869ec9 Fix gwip alias in git plugin when no files to rm
5a58667 Merge remote-tracking branch 'upstream/master'
baf2ab1 Don't set RBENV_ROOT to "$HOME/.rbenv" when using Homebrew rbenv
ca90021 Merge pull request #2576 from jeffwilliams/master
81d53af Merge pull request #2597 from githubhjs/master
3be2e34 Don't lazy load the virtualenvwrapper.
12415a9 Merge pull request #2539 from chriswiggins/master
dcae31d Merge pull request #2549 from brandon-beacher/master
23a43e9 Merge pull request #2574 from thiagowfx/linux-battery
080409a Merge pull request #2603 from docwhat/ssh-agent-hostname
fed8076 Merge pull request #2607 from avonderluft/dev
8ee9971 Merge pull request #2613 from Fisiu/ignore-ssh-users
baeac5b Remove copyright information, as per #2588
b56e8fb Ignore more users in ssh completion.
c9e7129 Merge pull request #2602 from blueyed/use-default-hosts-completion-2
bf4d4db Merge branch 'master' of git://github.com/robbyrussell/oh-my-zsh into dev
8f79713 add option to show dirty status of current dir
223fd60 Merge remote-tracking branch 'upstream/master'
9e90bf0 Added v as a keybinding to edit-command-line
ee21fe9 Merge pull request #2380 from rkh/chruby-gallois
8d8df3f Merge pull request #2435 from tompelka/master
d943d23 Merge pull request #2466 from jarus/steeef-virtualenv-fix
07c2bdf Merge pull request #2588 from kerimdzhanov/remote-themes-copyright-info
d752c8c Merge pull request #2584 from joukojo/master
3b604c6 Merge pull request #2590 from zhouhua015/master
d058c9d Merge pull request #2593 from bobmaerten/typo-docker-plugin
552aab6 Merge pull request #2591 from kevinxucs/remove-extra-aliases
cfe468f ssh-agent: prevent environment file from flapping
47b0d75 Fixing a few quirks in the latest installer updates (quoting /Users/robbyrussell/.oh-my-zsh and such). Also mentioining our twitter account after install
71d9420 Use zsh's default for ':completion:*:hosts'
de78e47 Merge pull request #2149 from cristim/master
7adf66f Merge pull request #1355 from F30/key-bindings
ca648ae Merge pull request #2072 from jorge-d/master
d65a153 Merge pull request #2595 from ksamdev/git.io
d0dcedc Merge pull request #2421 from LFDM/rails_plugin_fix
7c95518 Merge pull request #2518 from erawk/master
0d76d9e Merge pull request #2326 from zakkak/master
e8b85f9 Merge pull request #1776 from ronshapiro/master
a5df4d7 Merge pull request #1501 from gambhiro/master
9cb14dc Merge pull request #1085 from avit/install-path
d8ed8f6 Merge pull request #650 from tristan0x/emacs
9272b0b Merge pull request #2600 from jontewks/patch-1
5f5e550 Update license year
b6cbba9 Updating README to show the new install URL, which redirects to the raw files on github.
86a272e Merge pull request #2596 from ryanwmarsh/fixing_bureau_scrollback
ae2f6f3 List pkgs by size
c3c8cc3 Fixes #2467 tab completion scrolls back in terminal when using bureau theme
b9841b0 Add github url shortener
3c9a29b Fix typo in autocomplete arguments
b71a2b9 Removed unsolicited aliases.
de0e7b5 Fix hgsl alias.
48579eb Merge pull request #2341 from mcornella/title_backticks
9f66d5b Document alternate install paths via ZSH variable
da1fa3b Abort installer on errors
2e11e2a Write install path into .zshrc
5bd590c Reference default install path from ZSH variable
c249c69 Remove all copyright information in themes. Closes #2587
a811ab0 Merge pull request #2331 from posva/catimg
e744bf2 Merge pull request #2479 from mrbfrank/theme-agnoster
6a2e65f Merge pull request #1402 from sergeylukin/master
59db638 Merge pull request #2565 from theallegedjosh/master
7b7c5fd Merge pull request #2579 from mfaerevaag/master
0018969 Merge pull request #2535 from IgorTimoshenko/feature/yii-plugin
01261d4 Merge pull request #2556 from chrisjones-brack3t/fix/git-prompt-1-9
0e10ebb Merge pull request #2572 from kevinxucs/sublime-linux-fix
0e31bed Merge pull request #2059 from felipec/fc/gitfast
755f809 Merge pull request #2529 from emanuelez/patch-1
95e6fea Merge pull request #2525 from lukesteensen/update-go-plugin
ae9a9b7 Merge pull request #2481 from felds/master
7b06ce7 Merge pull request #2366 from chuancong/patch-1
cc926e9 Merge pull request #2322 from dpsk/patch-2
92a54eb Merge pull request #2166 from cap10morgan/no-clobber-rbenv-root
978bb40 Merge pull request #2564 from miry/patch-3
9bd9278 Merge pull request #2287 from rumpelsepp/master
7a14ab7 Merge pull request #2400 from bric3/svn_fast_plugin
deb08a7 Merge conflicts with af-magic theme
2208854 Cleaning up conflict with merge of #2330
fd8ce7f added mvnjetty alias
7378765 added aliases for tomcat:run tomcat7:run
8b667b2 added mvn-update
d41ac7f Updated wd plugin to v0.3.0
c0b98cd Added dirhistory plugin.
2691520 Integrate changes from #1841.
564a708 added the linux implementation to the battery plugin
5ba96e9 Fixed sublime plugin behaviors.
6dcdfe6 :panda_face: Added simulator alias for Xcode plugin
185cb6e adding support for node
fdbf0cb gem push alias and gem yank alias
da573f6 add gem push alias
f139401 add gem build alias
56babe6 Adds command line aliases useful for dealing with JSON
6b3c953 Merge branch 'master' of github.com:robbyrussell/oh-my-zsh
6cc2408 ..a fundamental piece of matter.
74ad998 Merge pull request #2548 from puffnfresh/gitignore-plugin-url
2eb68a4 Merge pull request #2544 from fduch2k/patch-1
8309b0a Verification of convert inside the function
c397000 grab last item in list which is the branch instead of relying on position.
7a54636 Much needed PEP8 love. Use spaces, not tabs.
a951600 Avoid 'title:parse error' with single quotes in $CMD Fixes #2182
3e5de21 Revert previous commit, escape %
b73ced3 Use single quotes also in $LINE definiton
b0fbe0d Avoid evaluating special chars in $LINE on title command (fixes #2234)
598a9c6 Adieu l'ami.
500cbbc Merge pull request #2541 from puffnfresh/cabal-sandboxes-info
840ae43 Remove mailcatcher from the bundler plugin.
c0f716b Fix remaining broken URL in gitignore function
bd4f7e2 Update gitignore.plugin.zsh
861290e Merge pull request #2542 from puffnfresh/gitignore-plugin-url
1df7d01 Fix URL to gi (gitignore) function
358b6ff Add cabal_sandbox_info function
fdd864b Update battery plugin to show calculating - OSX
354593e Added Yii basic command completion
1a029f2 Add rake-fast plugin for fast rake autocompletion
f6f3e93 Improve oneline logs
aa9db3e update golang plugin to match official version
2078e7d remove duplicate 'go' plugin, symlink to 'golang'
f3f0a54 Updated _brew zsh autocompletion to latest Homebrew upstream
4ce7f0a Merge pull request #2515 from nupfel/plugins/iwhois
2ed9903 Merge pull request #2516 from lukesteensen/patch-1
0d212bb Add 'services' command to homebrew completion
0cb2ecf provides iwhois command to use CNAMES under whois.geek.nz to find most accurate whois server
c563fe9 Makes history-substring-search use term specific up and down buttons. Fixes #2089.
ed19ffe Add scd plugin for smart change of directory.
217d8f0 `fc -l 1` instead of `history` in zsh_stats #2501
ec37c05 Merge pull request #2465 from klange/master
7a6e2c0 Merge pull request #2342 from blackjid/master
41d9717 Merge pull request #2402 from bric3/battery_level_gauge
4d83da7 highlight the username when root
685ea4a theme agnoster: remove trailing space
7daaa18 corrected branch character
df0305a Merge pull request #2368 from lumbric/master
78ffa71 updated url to latest powerline-patched fonts
3d41804 Improve virtualenv prompt in steeef theme
a48fd1e Update nyan.plugin.zsh
9b3344d change nyancat telnet server
cc8b093 Adds a method that print a battery gauge
7b9e489 Add Laravel4 plugin
23e57c1 Adding commit hash to branch name in my favorit rjk-repos theme.
a667191 Fixes _rails_command
ca129bb Renames main plugin function to `svn_prompt_info`
f66ab7f Renamed the methods of this script
8ede6c6 Added further cleanup and svn status information
b0b79e0 No need to eval in rvm_prompt_info!
8bf8e1e Heavy refactor of svn-fast-info
d485044 Merge pull request #2389 from driver2000/patch-1
a609fd5 Merge pull request #2398 from phstc/fixes-tmuxinator-plugin-find
642ae64 Inline `parse_svn` to avoid leaky state
1304ed8 Report the SVN need upgrade
2d6d9d5 Fixes RPROMPT in af-magic.zsh-theme
85fde31 Renames the file to prompt_info_functions.zsh
082607c Adds documentation.
72392a2 Adds all other dummy implementations.
9ce1b62 new faster SVN plugin
4354f91 Fixes tmuxinator plugin find on OSX
288604e add brew-cask plugin
e2838f7 Merge pull request #2396 from soluwalana/master
d60522c escape dashes
827d9df Update git.plugin.zsh
6a40557 Updates spectrum.zsh
3e5e2d4 Fix bad right prompt placing.
c6aacf6 Refactors ruby_prompts.zsh
8a887c5 Joins ruby prompt files and adds ruby_prompt_info.
7aa7661 Adds chruby_prompt_info dummy function.
ae6ded5 Returns false when rbenv is not found.
468b24a Returns false when rvm is not found.
bbbff94 Fixes rvm_prompt_info() in lib/rvm.zsh
f6bb74e add chruby info to gallois theme
b58b996 fix name schema for sudo plugin
00b2cc6 New plugin for the n98-magerun Magento command line tool
e41b6ac Add support to command "show"
a38af27 Revert "Cancel update if the current user doesn't have write permissions for the oh-my-zsh directory."
c9e5adb Merge pull request #2358 from n-st/master
152e1e0 Cancel update if the current user doesn't have write permissions for the oh-my-zsh directory.
dbdd23d Prevents oh-my-zsh loading the .zshenv twice
fdfc907 Add rdmtc alias for rails plugin.
c05a28a typo fix
44b23ae catimg: fix exit without using source supresses errors from convert whilen converting, as they are usually just warnings
349fa15 Fixed a dirs bug for catimg
cbd63f2 Fix for virtualenv support - fixes #2328, fixes #2297, resolves #2319
0185d99 catimg plugin allow to print an image to the stdout using convert
e978119 Improve comments
be6b1b3 Improve comments
9b811fb accidentally blew away a git config setting used for another purpose, renaming in order to distinguish
357ab49 Merge pull request #2316 from BBonifield/master
f082d7a Making auto-correction off by default
8c93142 Merge pull request #2303 from petervanderdoes/git-flow-avh
6fa64b7 Merge pull request #2296 from pstadler/master
2ffca06 Update git-flow-avh 1.7.0
858c515 source ~/.profile only if it exists
4e34588 Merge pull request #2208 from onemouth/master
032ca0d Merge pull request #2173 from jeffrey4l/venv
7d1b668 Merge pull request #2159 from pungoyal/master
f0a7adc Merge pull request #2176 from dejanlukan/spectrum
b8c1566 Merge pull request #2194 from kevinxucs/gitignore-fix
83c18f8 Merge pull request #2195 from KevinBongart/command_blacklist_for_bundler_plugin
aed9cff Merge pull request #2215 from posva/rand-quote
b422b07 Merge pull request #2255 from shadyproject/plugin/xcode-support
4be8c51 Merge pull request #2258 from amilaperera/master
b764fad Merge pull request #2262 from mfaerevaag/master
cd219f7 Merge pull request #1520 from prooftechnique/master
f974fa3 Merge pull request #1574 from adben/master
a762b3e Merge pull request #1683 from mnme/master
0d35210 Merge pull request #1087 from avit/install-template
de35b55 Merge pull request #1136 from koraa/pull_req_fastfile
4bb8bd8 Merge pull request #1135 from koraa/pull_req_sinchar
1dd9c43 Merge pull request #1134 from koraa/pull_req_helpers
c9dd778 Merge pull request #1201 from koraa/pull_req_debian
5a32796 Merge pull request #2088 from Stibbons/gsemet_push_pep_pylint_completion
19ce09c Merge pull request #2086 from Stibbons/gsemet_push_repo
f48d675 Merge pull request #1883 from Stibbons/gsemet_push_source_profile_for_upgrade
bc79f61 Merge pull request #1866 from Stibbons/gsemet_push_common_aliases
7c3665b Merge pull request #2003 from dongweiming/update-gem
c0a6f8a Merge pull request #1950 from dongweiming/add-systemadmin-plugin
573830b Merge pull request #1947 from dongweiming/add-sudo
2f3bddc Merge pull request #1931 from dongweiming/update-urltools
027c9ee Merge pull request #1942 from dongweiming/update-powify
b93f3b9 Merge pull request #1940 from dongweiming/update-supervisor
44c7fd9 Merge pull request #1928 from dongweiming/add-hist-stamp
f574849 Merge pull request #1927 from dongweiming/modify
533e31f Merge pull request #1956 from emesix/patch-1
3ff772d Merge pull request #2022 from Zhann/master
bbadcf7 Merge pull request #2034 from kasperisager/master
b38db4a Merge pull request #2097 from natecox/master
b6f4a88 Merge pull request #2131 from stevschmid/patch-1
4fc0806 Merge pull request #1030 from solnic/master
7a6caf6 Merge pull request #950 from sonicradish/master
1badb74 Merge pull request #948 from excepttheweasel/master
1c185f0 Merge pull request #946 from rach/master
4954335 Merge pull request #781 from pilif/two-lined-pygmalion
2a43c5e Merge pull request #684 from masnick/master
07594af Merge pull request #639 from MarcoPeraza/git_unpushed
2737289 Merge pull request #513 from randy909/fix-edit-cmdline
3d6f9d7 Merge pull request #306 from jtriley/git-prompt
7f3e56f Merge pull request #2198 from Larandar/master
182652b Merge pull request #2202 from kevinxucs/themes-random
9a40ae9 Merge pull request #2212 from bsiegel/bundler_bi_function
e25329f Merge pull request #2222 from jamesoff/fix-battery-plugin
fb614a0 Merge pull request #2229 from prubianes/master
9357f2f Merge pull request #2236 from Isquariel/nvm
ac83834 Merge pull request #2270 from michaelorr/slow-git-fix
5589741 Merge pull request #2272 from TuiKiken/master
7ee3b27 Merge pull request #2292 from Atem18/master
22c0db6 Change `bi` alias to a function
06bd72f Merge remote-tracking branch 'upstream/master'
84e178f Fixed lines 32, 33, 34 where one 'p' was missing in 'zypper' command.
5643fac Merge pull request #2290 from jtinfors/master
270b1dc Merge pull request #2242 from sztupy/fix-mvn-color-locale
1b337af Merge pull request #2252 from henrique2010/master
259daa0 Merge pull request #2254 from Atem18/master
401c82a Merge pull request #2286 from ych/master
d51cb6d Merge pull request #2260 from Stibbons/gsemet_push_sublime3_support2
b6c6a5a Merge pull request #2285 from dhruvasagar/master
7a27a1c Merge pull request #2240 from Kriechi/master
96bd365 Adds the hgsl alias for one-line shortlog convenience
1493d88 Added migration notification for rails plugin
14005be Merge pull request #2249 from pabrahamsson/obsd_colorls
f078e03 Merge pull request #2275 from wjv/wjv
c9f2c94 Added/modified some useful aliases.
699c82e Add FreeBSD support for autojump plugin
3d851da Added Amuse zsh theme
b4ffe5c wd.plugin: Added checks, readme and completion
240b25d wd.plugin: Fixed nested dirs
66a33b8 Merge pull request #2261 from webframp/feature/chruby-plugin
fabe23b Merge pull request #2259 from eddiemonge/patch-1
370ccc3 Merge pull request #2266 from ssm/plugin/pyenv
81f9f3c Merge pull request #2271 from ashleyh/master
83462b3 Merge pull request #2273 from thibaudgg/patch-1
7cf34f5 Merge pull request #2276 from christianschmidt/master
ec779d5 Update _pass to follow symlinks for completion
27d048a Merge remote-tracking branch 'upstream/master'
d12113a Use precmd hook for updating OS X proxy icon
b5b3519 Update _heroku config arguments (Heroku Client v3)
7c56364 Add update statistics
4d3fb28 fix pip plugin
fbd479b adding a check for git config option to disable git_prompt_info() on a per repo basis
9b37fcb unified and improved Rails plugin
613d116 Add pyenv plugin
3d59d13 Add a passacre pl…
DennisDenuto pushed a commit to DennisDenuto/oh-my-zsh that referenced this pull request Oct 29, 2016
DennisDenuto pushed a commit to DennisDenuto/oh-my-zsh that referenced this pull request Oct 29, 2016
fforw pushed a commit to fforw/oh-my-zsh that referenced this pull request Feb 21, 2017
fforw pushed a commit to fforw/oh-my-zsh that referenced this pull request Feb 21, 2017
Luxcium added a commit to LuxciumProject/ahmyzsh that referenced this pull request Sep 20, 2020
https://github.com/ohmyzsh/ohmyzsh/blob/93c837fec8e9fe61509b9dff9e909e84f7ebe32d/plugins/git/git.plugin.zsh#L1-L293

Copyright (c) 2009-2020 Robby Russell and
[contributors](https://github.com/ohmyzsh/ohmyzsh/contributors)

TAnks to those who have contributed to fix those 20+ issues:

ohmyzsh/ohmyzsh#1790
ohmyzsh/ohmyzsh#3535
ohmyzsh/ohmyzsh#3682
ohmyzsh/ohmyzsh#3962
ohmyzsh/ohmyzsh#3972
ohmyzsh/ohmyzsh#3977
ohmyzsh/ohmyzsh#3991
ohmyzsh/ohmyzsh#4085
ohmyzsh/ohmyzsh#4727
ohmyzsh/ohmyzsh#5130
ohmyzsh/ohmyzsh#5179
ohmyzsh/ohmyzsh#5362
ohmyzsh/ohmyzsh#5442
ohmyzsh/ohmyzsh#6329
ohmyzsh/ohmyzsh#6793
ohmyzsh/ohmyzsh#7682
ohmyzsh/ohmyzsh#7716
ohmyzsh/ohmyzsh#7754
ohmyzsh/ohmyzsh#867
ohmyzsh/ohmyzsh#9103
ohmyzsh/ohmyzsh#9114

and those who help develop
theses aliases and function
whith theses Pull 40+ Requests:

ohmyzsh/ohmyzsh#2790
ohmyzsh/ohmyzsh#3167
ohmyzsh/ohmyzsh#4304
ohmyzsh/ohmyzsh#4751
ohmyzsh/ohmyzsh#4830
ohmyzsh/ohmyzsh#4993
ohmyzsh/ohmyzsh#5025
ohmyzsh/ohmyzsh#5178
ohmyzsh/ohmyzsh#5271
ohmyzsh/ohmyzsh#5287
ohmyzsh/ohmyzsh#5306
ohmyzsh/ohmyzsh#5307
ohmyzsh/ohmyzsh#5390
ohmyzsh/ohmyzsh#5417
ohmyzsh/ohmyzsh#5433
ohmyzsh/ohmyzsh#5511
ohmyzsh/ohmyzsh#5591
ohmyzsh/ohmyzsh#5643
ohmyzsh/ohmyzsh#5729
ohmyzsh/ohmyzsh#5844
ohmyzsh/ohmyzsh#5849
ohmyzsh/ohmyzsh#5871
ohmyzsh/ohmyzsh#6006
ohmyzsh/ohmyzsh#6031
ohmyzsh/ohmyzsh#6059
ohmyzsh/ohmyzsh#6079
ohmyzsh/ohmyzsh#6297
ohmyzsh/ohmyzsh#6378
ohmyzsh/ohmyzsh#6789
ohmyzsh/ohmyzsh#6791
ohmyzsh/ohmyzsh#6893
ohmyzsh/ohmyzsh#7064
ohmyzsh/ohmyzsh#7472
ohmyzsh/ohmyzsh#7556
ohmyzsh/ohmyzsh#7629
ohmyzsh/ohmyzsh#7630
ohmyzsh/ohmyzsh#7724
ohmyzsh/ohmyzsh#7841
ohmyzsh/ohmyzsh#8089
ohmyzsh/ohmyzsh#8563
ohmyzsh/ohmyzsh#8617
ohmyzsh/ohmyzsh#8622
ohmyzsh/ohmyzsh#8697
ohmyzsh/ohmyzsh#8902
ohmyzsh/ohmyzsh#8935
ohmyzsh/ohmyzsh#8957
ohmyzsh/ohmyzsh#9049
Signed-off-by: Benjamin Vincent (Luxcium) <luxcium@neb401.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Area: plugin Issue or PR related to a plugin
Projects
None yet