b22f63a615ef

Clean up Zsh aliases.
[view raw] [browse files]
author Steve Losh <steve@stevelosh.com>
date Tue, 21 Jun 2011 14:47:33 -0400
parents 9d262bfc3171
children 5e73be7be68c
branches/tags (none)
files zsh/misc.zsh

Changes

--- a/zsh/misc.zsh	Tue Jun 21 14:44:00 2011 -0400
+++ b/zsh/misc.zsh	Tue Jun 21 14:47:33 2011 -0400
@@ -1,3 +1,5 @@
+alias h=hg
+
 alias pbc='pbcopy'
 alias pbp='pbpaste'
 
@@ -56,23 +58,11 @@
     '; markdown $@) | bcat
 }
 
-function pull_everything() {
-    for repo in $( ls -1 ); do
-        if [[ -d $repo && -d $repo/.hg ]]; then
-            echo "Pulling" $repo
-            hg -R $repo pull -u
-            echo
-        fi
-    done
-}
-
 # Updated verison of SVN.
 export DYLD_LIBRARY_PATH="/opt/subversion/lib:$DYLD_LIBRARY_PATH"
 export PYTHONPATH="/opt/subversion/lib/svn-python:$PYTHONPATH"
 export PATH="/opt/subversion/bin:$PATH"
 
-# hgd
-test -f "$HOME/src/hgd/hd" && alias h='~/src/hgd/hd' || alias h=hg
 
 # What the hell did I do the other day?
 function whatthehelldididoon() {