Merge remote-tracking branch 'upstream/master'

This commit is contained in:
Gaetan Semet 2013-12-09 10:52:48 +01:00
commit e7dbded054
3 changed files with 16 additions and 14 deletions

View file

@ -1,14 +1,13 @@
if [[ "$DISABLE_CORRECTION" == "true" ]]; then alias man='nocorrect man'
return alias mv='nocorrect mv'
else alias mysql='nocorrect mysql'
alias mkdir='nocorrect mkdir'
alias gist='nocorrect gist'
alias heroku='nocorrect heroku'
alias ebuild='nocorrect ebuild'
alias hpodder='nocorrect hpodder'
alias sudo='nocorrect sudo'
if [[ "$ENABLE_CORRECTION" == "true" ]]; then
setopt correct_all setopt correct_all
alias man='nocorrect man'
alias mv='nocorrect mv'
alias mysql='nocorrect mysql'
alias mkdir='nocorrect mkdir'
alias gist='nocorrect gist'
alias heroku='nocorrect heroku'
alias ebuild='nocorrect ebuild'
alias hpodder='nocorrect hpodder'
alias sudo='nocorrect sudo'
fi fi

View file

@ -41,6 +41,9 @@ _git-flow ()
'hotfix:Manage your hotfix branches.' 'hotfix:Manage your hotfix branches.'
'support:Manage your support branches.' 'support:Manage your support branches.'
'version:Shows version information.' 'version:Shows version information.'
'finish:Finish the branch you are currently on.'
'delete:Delete the branch you are currently on.'
'publish:Publish the branch you are currently on.'
) )
_describe -t commands 'git flow' subcommands _describe -t commands 'git flow' subcommands
;; ;;
@ -95,7 +98,7 @@ __git-flow-release ()
'list:List all your release branches. (Alias to `git flow release`)' 'list:List all your release branches. (Alias to `git flow release`)'
'publish:Publish release branch to remote.' 'publish:Publish release branch to remote.'
'track:Checkout remote release branch.' 'track:Checkout remote release branch.'
'delet:Delete a release branch.' 'delete:Delete a release branch.'
) )
_describe -t commands 'git flow release' subcommands _describe -t commands 'git flow release' subcommands
_arguments \ _arguments \

View file

@ -20,7 +20,7 @@ if [[ -z "$epoch_target" ]]; then
epoch_target=13 epoch_target=13
fi fi
[ ~/.profile ] && source ~/.profile [ -f ~/.profile ] && source ~/.profile
if [ -f ~/.zsh-update ] if [ -f ~/.zsh-update ]
then then