From 2db7f62c2b1ad2199e6e1a20369c62dd35e4b625 Mon Sep 17 00:00:00 2001
From: Kaleb Elwert <belak@coded.io>
Date: Wed, 19 Jul 2017 10:41:39 -0700
Subject: [PATCH] [homebrew] Add documentation for brewo and casko

---
 modules/homebrew/README.md | 2 ++
 modules/homebrew/init.zsh  | 4 ++--
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/modules/homebrew/README.md b/modules/homebrew/README.md
index 84b43865..98019fdf 100644
--- a/modules/homebrew/README.md
+++ b/modules/homebrew/README.md
@@ -12,6 +12,7 @@ Aliases
   - `brewC` cleans outdated brews, including keg-only, and their cached archives.
   - `brewi` installs a formula.
   - `brewl` lists installed formulae.
+  - `brewo` lists brews which have an update available.
   - `brews` searches for a formula.
   - `brewu` updates Homebrew and formulae.
   - `brewx` uninstalls a formula.
@@ -23,6 +24,7 @@ Aliases
   - `caskC` cleans up all cached downloads.
   - `caski` installs a cask.
   - `caskl` lists installed casks.
+  - `casko` lists casks which have an update available.
   - `casks` searches for a cask.
   - `caskx` uninstalls a cask.
 
diff --git a/modules/homebrew/init.zsh b/modules/homebrew/init.zsh
index 19a38978..e517c0a5 100644
--- a/modules/homebrew/init.zsh
+++ b/modules/homebrew/init.zsh
@@ -19,10 +19,10 @@ alias brewc='brew cleanup'
 alias brewC='brew cleanup --force'
 alias brewi='brew install'
 alias brewl='brew list'
+alias brewo='brew outdated'
 alias brews='brew search'
 alias brewu='brew update && brew upgrade'
 alias brewx='brew remove'
-alias brewo='brew outdated'
 
 # Homebrew Cask
 alias cask='brew cask'
@@ -30,6 +30,6 @@ alias caskc='brew cask cleanup --outdated'
 alias caskC='brew cask cleanup'
 alias caski='brew cask install'
 alias caskl='brew cask list'
+alias casko='brew cask outdated'
 alias casks='brew cask search'
 alias caskx='brew cask uninstall'
-alias casko='brew cask outdated'