From 6d14f4e2ba3ff925cdb45b54ccae77505be972c4 Mon Sep 17 00:00:00 2001 From: Mike Kusold Date: Wed, 22 Feb 2012 13:42:05 -0500 Subject: [PATCH 1/2] Added Brew Plugin --- plugins/brew/init.zsh | 785 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 785 insertions(+) create mode 100644 plugins/brew/init.zsh diff --git a/plugins/brew/init.zsh b/plugins/brew/init.zsh new file mode 100644 index 0000000000..176d52c293 --- /dev/null +++ b/plugins/brew/init.zsh @@ -0,0 +1,785 @@ + + + + + + + + + plugins/brew/brew.plugin.zsh at master from robbyrussell/oh-my-zsh - GitHub + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+

+ / + oh-my-zsh +

+ + + + + + +
+ + + + + + + + + + + + + + + + + + + + +
+ + + + + + + +

Latest commit to the master branch

+ +
+

+ Merge pull request #958 from cruser42/master + +

+
URGENT: Fix for bug introduced in pull request 925
+
+ commit 1120f97305 + + +
+ + eddorre + authored + +
+
+
+ + + +
+ + + + + +
+
+ +
+
+
+
+ Txt + 100644 + 2 lines (1 sloc) + 0.027 kb +
+ +
+
+ + + + + +
+
1
+
+
+
alias brews='brew list -1'
+
+
+ +
+
+
+
+ +
+ + + +
+
+
+ + + + + + + + + +
+

Markdown Cheat Sheet

+ +
+ +
+
+

Format Text

+

Headers

+
+# This is an <h1> tag
+## This is an <h2> tag
+###### This is an <h6> tag
+

Text styles

+
+*This text will be italic*
+_This will also be italic_
+**This text will be bold**
+__This will also be bold__
+
+*You **can** combine them*
+
+
+
+

Lists

+

Unordered

+
+* Item 1
+* Item 2
+  * Item 2a
+  * Item 2b
+

Ordered

+
+1. Item 1
+2. Item 2
+3. Item 3
+   * Item 3a
+   * Item 3b
+
+
+

Miscellaneous

+

Images

+
+![GitHub Logo](/images/logo.png)
+Format: ![Alt Text](url)
+
+

Links

+
+http://github.com - automatic!
+[GitHub](http://github.com)
+

Blockquotes

+
+As Kanye West said:
+
+> We're living the future so
+> the present is our past.
+
+
+
+
+ +

Code Examples in Markdown

+
+

Syntax highlighting with GFM

+
+```javascript
+function fancyAlert(arg) {
+  if(arg) {
+    $.facebox({div:'#foo'})
+  }
+}
+```
+
+
+

Or, indent your code 4 spaces

+
+Here is a Python code example
+without syntax highlighting:
+
+    def foo:
+      if not bar:
+        return true
+
+
+

Inline code for comments

+
+I think you should use an
+`<addr>` element here instead.
+
+
+ +
+ + + +
+

Something went wrong with that request. Please try again. Dismiss

+
+ + + + + + + + From 512cfeec988a748c8fe0ac1cf1b83b738b8d433f Mon Sep 17 00:00:00 2001 From: Mike Kusold Date: Wed, 22 Feb 2012 14:55:42 -0500 Subject: [PATCH 2/2] Added wrong file --- plugins/brew/init.zsh | 786 +----------------------------------------- 1 file changed, 1 insertion(+), 785 deletions(-) diff --git a/plugins/brew/init.zsh b/plugins/brew/init.zsh index 176d52c293..46838b2dee 100644 --- a/plugins/brew/init.zsh +++ b/plugins/brew/init.zsh @@ -1,785 +1 @@ - - - - - - - - - plugins/brew/brew.plugin.zsh at master from robbyrussell/oh-my-zsh - GitHub - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
-
-
-

- / - oh-my-zsh -

- - - - - - -
- - - - - - - - - - - - - - - - - - - - -
- - - - - - - -

Latest commit to the master branch

- -
-

- Merge pull request #958 from cruser42/master - -

-
URGENT: Fix for bug introduced in pull request 925
-
- commit 1120f97305 - - -
- - eddorre - authored - -
-
-
- - - -
- - - - - -
-
- -
-
-
-
- Txt - 100644 - 2 lines (1 sloc) - 0.027 kb -
- -
-
- - - - - -
-
1
-
-
-
alias brews='brew list -1'
-
-
- -
-
-
-
- -
- - - -
-
-
- - - - - - - - - -
-

Markdown Cheat Sheet

- -
- -
-
-

Format Text

-

Headers

-
-# This is an <h1> tag
-## This is an <h2> tag
-###### This is an <h6> tag
-

Text styles

-
-*This text will be italic*
-_This will also be italic_
-**This text will be bold**
-__This will also be bold__
-
-*You **can** combine them*
-
-
-
-

Lists

-

Unordered

-
-* Item 1
-* Item 2
-  * Item 2a
-  * Item 2b
-

Ordered

-
-1. Item 1
-2. Item 2
-3. Item 3
-   * Item 3a
-   * Item 3b
-
-
-

Miscellaneous

-

Images

-
-![GitHub Logo](/images/logo.png)
-Format: ![Alt Text](url)
-
-

Links

-
-http://github.com - automatic!
-[GitHub](http://github.com)
-

Blockquotes

-
-As Kanye West said:
-
-> We're living the future so
-> the present is our past.
-
-
-
-
- -

Code Examples in Markdown

-
-

Syntax highlighting with GFM

-
-```javascript
-function fancyAlert(arg) {
-  if(arg) {
-    $.facebox({div:'#foo'})
-  }
-}
-```
-
-
-

Or, indent your code 4 spaces

-
-Here is a Python code example
-without syntax highlighting:
-
-    def foo:
-      if not bar:
-        return true
-
-
-

Inline code for comments

-
-I think you should use an
-`<addr>` element here instead.
-
-
- -
- - - -
-

Something went wrong with that request. Please try again. Dismiss

-
- - - - - - - - +alias brews='brew list -1' \ No newline at end of file