Added update function. More name changes

This commit is contained in:
Nathan Broadbent
2011-10-18 00:31:12 +08:00
parent 0449951e99
commit 8c95162bc6
4 changed files with 7 additions and 3 deletions

View File

@@ -6,3 +6,7 @@ if [[ $shell == "zsh" ]]; then zsh_shwordsplit=$((setopt | grep -q shwordsplit)
zsh_compat(){ if [[ $shell == "zsh" && -z $zsh_shwordsplit ]]; then setopt shwordsplit; fi; }
zsh_reset(){ if [[ $shell == "zsh" && -z $zsh_shwordsplit ]]; then unsetopt shwordsplit; fi; }
# Update SCM Breeze from GitHub
update_scm_breeze() { $(cd "$scmbreezeDir"; git pull origin master); }