1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-09-28 22:42:38 +00:00

Load completion for Carton

This commit is contained in:
Sebastian Wiesner 2013-05-17 17:19:42 +02:00
parent 7e33c7189e
commit bde5149c7b

View File

@ -12,4 +12,9 @@ if [[ -d "$HOME/.carton" ]]; then
alias cau='carton update'
alias caI='carton init'
alias cae='carton exec'
local completion="$HOME/.carton/etc/carton_completion.zsh"
if [[ -e "${completion}" ]]; then
source "${completion}"
fi
fi