Merge pull request #496 from Vijar/master

zsh aliases to show/hide hidden files in Finder
This commit is contained in:
Yan Pritzker 2014-06-11 10:34:21 -05:00
commit 0d6ba1139e

View File

@ -154,3 +154,7 @@ alias srdmt='spring rake db:migrate db:test:prepare'
alias sp='sprintly'
# spb = sprintly branch - create a branch automatically based on the bug you're working on
alias spb="git checkout -b \`sp | tail -2 | grep '#' | sed 's/^ //' | sed 's/[^A-Za-z0-9 ]//g' | sed 's/ /-/g' | cut -d"-" -f1,2,3,4,5\`"
# Finder
alias showFiles='defaults write com.apple.finder AppleShowAllFiles YES; killall Finder /System/Library/CoreServices/Finder.app'
alias hideFiles='defaults write com.apple.finder AppleShowAllFiles NO; killall Finder /System/Library/CoreServices/Finder.app'