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

Authentication failure at "Changing shell for x" #3516

Closed
ghost opened this issue Jan 23, 2015 · 9 comments · Fixed by #3809
Closed

Authentication failure at "Changing shell for x" #3516

ghost opened this issue Jan 23, 2015 · 9 comments · Fixed by #3809

Comments

@ghost
Copy link

ghost commented Jan 23, 2015

Authentication failure when running both the wget and curl installers. It occurs both when I'm using su -c and sudo in latest Fedora, as well as when I'm running without root privileges.

@apjanke
Copy link
Contributor

apjanke commented Feb 24, 2015

I'm having trouble reproducing. The installer is working fine for me on Fedora 21 as a normal user or as root. (Though I wouldn't recommend setting up oh-my-zsh for root.)

You shouldn't need su -c or sudo, since oh-my-zsh is a per-user installation and installs in to your home directory. It does not require root privileges to install.

Is this still happening for you? Which version of Fedora are you running?

@apjanke
Copy link
Contributor

apjanke commented Feb 24, 2015

Okay, I can reproduce a similar error now. Does this look like the error you were seeing?

Here's what I see on Debian 7, as a newly created user whose current default shell is /bin/bash.

alice@debbie:~$ curl -L https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh | sh
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100  1930  100  1930    0     0   5369      0 --:--:-- --:--:-- --:--:--  5369
Cloning Oh My Zsh...
Cloning into '/home/alice/.oh-my-zsh'...
remote: Counting objects: 636, done.
remote: Compressing objects: 100% (500/500), done.
remote: Total 636 (delta 14), reused 501 (delta 4), pack-reused 0
Receiving objects: 100% (636/636), 358.32 KiB, done.
Resolving deltas: 100% (14/14), done.
Looking for an existing zsh config...
Using the Oh My Zsh template file and adding it to ~/.zshrc
Copying your current PATH and adding it to the end of ~/.zshrc for you.
Time to change your default shell to zsh!
Password: chsh: PAM: Authentication failure
alice@debbie:~$ 

(I see basically the same thing on Fedora 21, too, with a fresh user account. I think the reason I couldn't reproduce before is that my user's shell was already zsh so the installer wasn't calling chsh.)

I'm guessing this is happening because the subshell that the installation script is running in is non-interactive, so chsh isn't prompting for a password (or it's prompting and reading an empty string instead of giving me a chance to type anything). I can reproduce that by just running chsh in a sh subshell.

alice@debbie:~$ echo "chsh -s /bin/zsh" | sh
Password: chsh: PAM: Authentication failure
alice@debbie:~$ chsh -s /bin/zsh
Password: 
alice@debbie:~$

I don't know how to fix this.

@apjanke
Copy link
Contributor

apjanke commented Feb 28, 2015

Looks like this is related to, if not the same thing, as #1224.

@apjanke
Copy link
Contributor

apjanke commented Feb 28, 2015

Okay, think I found the issue. As diagnosed in this AskUbuntu question, the problem is that the curl ... | sh invocation form is hooking up the output of curl the the stdin of the shell running the installation. So when chsh prompts for a password, it reads from stdin, which is the install.sh file we've downloaded, and not your keyboard. So it gets the wrong password, and fails.

I'm surprised this is happening for you as root. When I'm root, chsh does not prompt for a password, and the oh-my-zsh installer works fine.

Here's a workaround. Save the install.sh script to a temporary file and run it from there, instead of piping directly to sh like the normal installation command does. This will leave stdin open for chsh to read your password.

curl -L https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh > install.sh && sh install.sh

This form works smoothly for me: it runs, lets me type in my password for chsh, and completes successfully.

@apjanke
Copy link
Contributor

apjanke commented Feb 28, 2015

So, @robbyrussell and @mcornella, should we change the curl .../install.sh | sh command we're posting for the installation? Or add an alternate form for Linux systems? It looks like the current form will break on any system where chsh prompts for a password and the user's default shell is not already zsh.

@apjanke
Copy link
Contributor

apjanke commented Feb 28, 2015

Better workaround: use backticks or subshell output capturing instead of a pipe or temp file.

sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"

The double quotes are required in order to preserve line feeds and keep the script syntax correct.

@drawcard
Copy link

Better workaround: use backticks or subshell output capturing instead of a pipe or temp file.

sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"

The double quotes are required in order to preserve line feeds and keep the script syntax correct.

Works great for me now :) (Running on a Ubuntu Trusty Vanilla VM + Vagrant)

@thekondr
Copy link

Hi guys,

chsh -s `which zsh` < /dev/tty

did the trick for me even for

curl ... | sh

@apjanke
Copy link
Contributor

apjanke commented Mar 22, 2015

Interesting. This is turning in to an educational experience for me.

Seems to me it would be better to change the invocation method to sh -c "$(...)" instead of hardwiring the redirection internally with < /dev/tty. That way, if more interactive steps ever got added to the installation script, they would work without additional redirection. And philosophically, since install.sh is intended to be used interactively, it seems appropriate to leave its stdin hooked up to the normal stdin instead of the script source. That would also allow scripting of its interactive inputs in some cases, which could be used for unattended installations or automation of testing.

diraol added a commit to diraol/oh-my-zsh that referenced this issue May 9, 2015
Updating the install instructions as proposed in: ohmyzsh#3516 (comment)
ncanceill pushed a commit to ncanceill/oh-my-zsh that referenced this issue May 12, 2015
Updating the install instructions as proposed in: ohmyzsh#3516 (comment)
ncanceill pushed a commit to ncanceill/oh-my-zsh that referenced this issue Jun 11, 2015
Updating the install instructions as proposed in: ohmyzsh#3516 (comment)
steshaw pushed a commit to steshaw/oh-my-zsh that referenced this issue Jun 16, 2015
Updating the install instructions as proposed in: ohmyzsh#3516 (comment)
Spirotot pushed a commit to Spirotot/oh-my-zsh that referenced this issue Jun 27, 2015
Updating the install instructions as proposed in: ohmyzsh#3516 (comment)
jbontik pushed a commit to jbontik/oh-my-zsh that referenced this issue Jul 19, 2015
Updating the install instructions as proposed in: ohmyzsh#3516 (comment)
sparrc pushed a commit to sparrc/oh-my-zsh that referenced this issue Jul 27, 2015
Updating the install instructions as proposed in: ohmyzsh#3516 (comment)
DerToti pushed a commit to DerToti/oh-my-zsh that referenced this issue Jul 29, 2015
Updating the install instructions as proposed in: ohmyzsh#3516 (comment)
danwakefield pushed a commit to danwakefield/dotfiles that referenced this issue 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 issue Aug 23, 2015
Updating the install instructions as proposed in: ohmyzsh#3516 (comment)
ChristianLohmann pushed a commit to ChristianLohmann/oh-my-zsh that referenced this issue Aug 31, 2015
Updating the install instructions as proposed in: ohmyzsh#3516 (comment)
inutano pushed a commit to inutano/oh-my-zsh that referenced this issue Oct 19, 2015
Updating the install instructions as proposed in: ohmyzsh#3516 (comment)
tmitchell pushed a commit to tmitchell/oh-my-zsh that referenced this issue Mar 31, 2016
Updating the install instructions as proposed in: ohmyzsh#3516 (comment)
NobbZ pushed a commit to NobbZ/oh-my-zsh that referenced this issue May 15, 2016
Updating the install instructions as proposed in: ohmyzsh#3516 (comment)
DennisDenuto pushed a commit to DennisDenuto/oh-my-zsh that referenced this issue Oct 29, 2016
Updating the install instructions as proposed in: ohmyzsh#3516 (comment)
fforw pushed a commit to fforw/oh-my-zsh that referenced this issue Feb 21, 2017
Updating the install instructions as proposed in: ohmyzsh#3516 (comment)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants