Load dependencies in Git init

This commit is contained in:
Sorin Ionescu 2012-09-29 13:07:31 -04:00
parent eb93677e4a
commit b0a71cae3c
2 changed files with 3 additions and 3 deletions

View File

@ -64,9 +64,6 @@
# 'rprompt' ''
#
# Load dependencies.
pmodload 'helper'
# Gets the Git special action (am, bisect, cherry, merge, rebase).
# Borrowed from vcs_info and edited.
function _git-action {

View File

@ -10,6 +10,9 @@ if (( ! $+commands[git] )); then
return 1
fi
# Load dependencies.
pmodload 'helper'
# Source module files.
source "${0:h}/alias.zsh"