From 45e50afaafe777b58708eac332f0694844365a12 Mon Sep 17 00:00:00 2001 From: James Womack Date: Wed, 11 Mar 2015 14:18:42 -0700 Subject: [PATCH 1/3] Use camelCase for npm aliases --- plugins/npm/npm.plugin.zsh | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/plugins/npm/npm.plugin.zsh b/plugins/npm/npm.plugin.zsh index d19079b3f..68ec5fabd 100644 --- a/plugins/npm/npm.plugin.zsh +++ b/plugins/npm/npm.plugin.zsh @@ -1,7 +1,14 @@ eval "$(npm completion 2>/dev/null)" -# Install and save to dependencies -alias npms="npm i -S " -# Install and save to dev-dependencies -alias npmd="npm i -D " +# npm package names are lowercase +# - https://twitter.com/substack/status/23122603153150361 +# Thus, we've used camelCase for the following aliases: + +# Install and save to dependencies in your package.json +# npms is used by https://www.npmjs.com/package/npms +alias npmS="npm i -S " + +# Install and save to dev-dependencies in your package.json +# npmd is used by https://github.com/dominictarr/npmd +alias npmD="npm i -D " From 3ad1d26c2338d7497ecdcac3af69f9a91e982545 Mon Sep 17 00:00:00 2001 From: Nathan Daly Date: Fri, 27 Mar 2015 15:59:53 -0700 Subject: [PATCH 2/3] Fixed Typo. --- README.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.markdown b/README.markdown index 25bcdbe6e..9f96e315d 100644 --- a/README.markdown +++ b/README.markdown @@ -3,7 +3,7 @@ Oh My Zsh is an open source, community-driven framework for managing your [zsh](http://www.zsh.org/) configuration. That sounds boring. Let's try this again. -__Oh My Zsh is a way of life!__ Once installed, your terminal prompt will become the talk of the town _or your money back!_ Each time you interace with your command prompt, you'll be able take advantage of the hundreds of bundled plugins and pretty themes. Strangers will come up to you in cafés and ask you, _"that is amazing. are you some sort of genius?"_ Finally, you'll begin to get the sort of attention that you always felt that you deserved. ...or maybe you'll just use the time that you saved to start flossing more often. +__Oh My Zsh is a way of life!__ Once installed, your terminal prompt will become the talk of the town _or your money back!_ Each time you interface with your command prompt, you'll be able take advantage of the hundreds of bundled plugins and pretty themes. Strangers will come up to you in cafés and ask you, _"that is amazing. are you some sort of genius?"_ Finally, you'll begin to get the sort of attention that you always felt that you deserved. ...or maybe you'll just use the time that you saved to start flossing more often. To learn more, visit http://ohmyz.sh and/or follow [ohmyzsh](https://twitter.com/ohmyzsh) on twitter. From 644dc46d1a6c0de935093bb3a986d3498d843ca1 Mon Sep 17 00:00:00 2001 From: Dan Girgenti Date: Sun, 5 Apr 2015 22:41:53 -0400 Subject: [PATCH 3/3] Add git bisect aliases to git plugin --- plugins/git/git.plugin.zsh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/plugins/git/git.plugin.zsh b/plugins/git/git.plugin.zsh index 9da448814..3d91c0368 100644 --- a/plugins/git/git.plugin.zsh +++ b/plugins/git/git.plugin.zsh @@ -111,6 +111,13 @@ alias gsta='git stash' alias gstp='git stash pop' alias gstd='git stash drop' +# Bisect aliases +alias gbs='git bisect' +alias gbss='git bisect start' +alias gbsg='git bisect good' +alias gbsb='git bisect bad' +alias gbsr='git bisect reset' + # Will cd into the top of the current repository # or submodule. alias grt='cd $(git rev-parse --show-toplevel || echo ".")'