2012-02-01 04:37:51 +00:00
|
|
|
#
|
2012-09-03 20:08:39 +00:00
|
|
|
# Initializes Prezto.
|
2012-02-01 04:37:51 +00:00
|
|
|
#
|
|
|
|
# Authors:
|
|
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
|
|
#
|
2011-10-12 03:13:58 +00:00
|
|
|
|
2012-09-08 22:47:57 +00:00
|
|
|
#
|
|
|
|
# Version Check
|
|
|
|
#
|
|
|
|
|
2011-10-12 03:13:58 +00:00
|
|
|
# Check for the minimum supported version.
|
2017-10-20 17:38:48 +00:00
|
|
|
min_zsh_version='4.3.11'
|
2011-10-12 03:13:58 +00:00
|
|
|
if ! autoload -Uz is-at-least || ! is-at-least "$min_zsh_version"; then
|
2017-06-19 21:18:14 +00:00
|
|
|
printf "prezto: old shell detected, minimum required: %s\n" "$min_zsh_version" >&2
|
2012-06-03 17:08:07 +00:00
|
|
|
return 1
|
2011-10-12 03:13:58 +00:00
|
|
|
fi
|
|
|
|
unset min_zsh_version
|
2009-09-01 14:41:18 +00:00
|
|
|
|
2018-02-07 21:38:54 +00:00
|
|
|
typeset -F SECONDS
|
|
|
|
|
2018-02-12 23:14:08 +00:00
|
|
|
function pdebuglog {
|
2018-02-07 21:38:54 +00:00
|
|
|
if ! zstyle -t ":prezto" debug; then
|
|
|
|
echo no debug
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
|
|
|
|
local format="$1"
|
|
|
|
shift
|
|
|
|
printf "[%f] $format\n" $SECONDS "$@"
|
|
|
|
}
|
|
|
|
|
2017-06-30 06:26:53 +00:00
|
|
|
# zprezto convenience updater
|
|
|
|
# The function is surrounded by ( ) instead of { } so it starts in a subshell
|
|
|
|
# and won't affect the environment of the calling shell
|
2017-07-06 23:00:58 +00:00
|
|
|
function zprezto-update {
|
|
|
|
(
|
|
|
|
function cannot-fast-forward {
|
|
|
|
local STATUS="$1"
|
|
|
|
[[ -n "${STATUS}" ]] && printf "%s\n" "${STATUS}"
|
|
|
|
printf "Unable to fast-forward the changes. You can fix this by "
|
|
|
|
printf "running\ncd '%s' and then\n'git pull' " "${ZPREZTODIR}"
|
|
|
|
printf "to manually pull and possibly merge in changes\n"
|
|
|
|
}
|
|
|
|
cd -q -- "${ZPREZTODIR}" || return 7
|
2017-08-04 17:54:19 +00:00
|
|
|
local orig_branch="$(git symbolic-ref HEAD 2> /dev/null | cut -d '/' -f 3)"
|
2017-07-06 23:00:58 +00:00
|
|
|
if [[ "$orig_branch" == "master" ]]; then
|
|
|
|
git fetch || return "$?"
|
|
|
|
local UPSTREAM=$(git rev-parse '@{u}')
|
2017-10-26 17:24:26 +00:00
|
|
|
local LOCAL=$(git rev-parse HEAD)
|
2017-07-06 23:00:58 +00:00
|
|
|
local REMOTE=$(git rev-parse "$UPSTREAM")
|
2017-10-26 17:24:26 +00:00
|
|
|
local BASE=$(git merge-base HEAD "$UPSTREAM")
|
2017-07-06 23:00:58 +00:00
|
|
|
if [[ $LOCAL == $REMOTE ]]; then
|
|
|
|
printf "There are no updates.\n"
|
|
|
|
return 0
|
|
|
|
elif [[ $LOCAL == $BASE ]]; then
|
2017-09-08 14:07:48 +00:00
|
|
|
printf "There is an update available. Trying to pull.\n\n"
|
2017-07-06 23:00:58 +00:00
|
|
|
if git pull --ff-only; then
|
|
|
|
printf "Syncing submodules\n"
|
|
|
|
git submodule update --recursive
|
|
|
|
return $?
|
|
|
|
else
|
|
|
|
cannot-fast-forward
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
elif [[ $REMOTE == $BASE ]]; then
|
|
|
|
cannot-fast-forward "Commits in master that aren't in upstream."
|
|
|
|
return 1
|
2017-06-30 06:26:53 +00:00
|
|
|
else
|
2017-07-06 23:00:58 +00:00
|
|
|
cannot-fast-forward "Upstream and local have diverged."
|
2017-06-30 06:26:53 +00:00
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
else
|
2017-07-06 23:00:58 +00:00
|
|
|
printf "zprezto install at '%s' is not on the master branch " "${ZPREZTODIR}"
|
|
|
|
printf "(you're on '%s')\nUnable to automatically update.\n" "${orig_branch}"
|
2017-06-30 06:26:53 +00:00
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
return 1
|
2017-07-06 23:00:58 +00:00
|
|
|
)
|
|
|
|
}
|
2012-09-08 22:47:57 +00:00
|
|
|
#
|
|
|
|
# Module Loader
|
|
|
|
#
|
|
|
|
|
|
|
|
# Loads Prezto modules.
|
|
|
|
function pmodload {
|
|
|
|
local -a pmodules
|
2017-11-13 00:01:39 +00:00
|
|
|
local -a pmodule_dirs
|
|
|
|
local -a locations
|
2012-09-08 22:47:57 +00:00
|
|
|
local pmodule
|
2017-11-13 00:01:39 +00:00
|
|
|
local pmodule_location
|
2016-09-10 14:41:37 +00:00
|
|
|
local pfunction_glob='^([_.]*|prompt_*_setup|README*|*~)(-.N:t)'
|
2012-09-08 22:47:57 +00:00
|
|
|
|
2017-11-13 00:01:39 +00:00
|
|
|
# Load in any additional directories and warn if they don't exist
|
|
|
|
zstyle -a ':prezto:load' pmodule-dirs 'user_pmodule_dirs'
|
|
|
|
for user_dir in "$user_pmodule_dirs[@]"; do
|
|
|
|
if [[ ! -d "$user_dir" ]]; then
|
|
|
|
echo "$0: Missing user module dir: $user_dir"
|
|
|
|
fi
|
|
|
|
done
|
2012-09-08 22:47:57 +00:00
|
|
|
|
2017-11-13 00:01:39 +00:00
|
|
|
pmodule_dirs=("$ZPREZTODIR/modules" "$ZPREZTODIR/contrib" "$user_pmodule_dirs[@]")
|
2012-09-08 22:47:57 +00:00
|
|
|
|
2017-11-13 00:01:39 +00:00
|
|
|
# $argv is overridden in the anonymous function.
|
|
|
|
pmodules=("$argv[@]")
|
2012-09-08 22:47:57 +00:00
|
|
|
|
|
|
|
# Load Prezto modules.
|
|
|
|
for pmodule in "$pmodules[@]"; do
|
2018-02-12 23:14:08 +00:00
|
|
|
pdebuglog "Started loading %q" $pmodule
|
2012-09-25 21:33:10 +00:00
|
|
|
if zstyle -t ":prezto:module:$pmodule" loaded 'yes' 'no'; then
|
2018-02-12 23:14:08 +00:00
|
|
|
pdebuglog "Module %q already loaded" $pmodule
|
2012-09-08 22:47:57 +00:00
|
|
|
continue
|
|
|
|
else
|
2017-11-14 00:41:54 +00:00
|
|
|
locations=(${pmodule_dirs:+${^pmodule_dirs}/$pmodule(-/FN)})
|
2017-11-13 00:01:39 +00:00
|
|
|
if (( ${#locations} > 1 )); then
|
|
|
|
print "$0: conflicting module locations: $locations"
|
|
|
|
continue
|
|
|
|
elif (( ${#locations} < 1 )); then
|
|
|
|
print "$0: no such module: $pmodule"
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Grab the full path to this module
|
|
|
|
pmodule_location=${locations[1]}
|
|
|
|
|
|
|
|
# Add functions to $fpath.
|
|
|
|
fpath=(${pmodule_location}/functions(/FN) $fpath)
|
|
|
|
|
|
|
|
function {
|
|
|
|
local pfunction
|
|
|
|
|
|
|
|
# Extended globbing is needed for listing autoloadable function directories.
|
|
|
|
setopt LOCAL_OPTIONS EXTENDED_GLOB
|
|
|
|
|
|
|
|
# Load Prezto functions.
|
|
|
|
for pfunction in ${pmodule_location}/functions/$~pfunction_glob; do
|
|
|
|
autoload -Uz "$pfunction"
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2017-11-28 04:19:01 +00:00
|
|
|
if [[ -s "${pmodule_location}/init.zsh" ]]; then
|
|
|
|
source "${pmodule_location}/init.zsh"
|
2017-12-03 08:41:25 +00:00
|
|
|
elif [[ -s "${pmodule_location}/${pmodule}.plugin.zsh" ]]; then
|
|
|
|
source "${pmodule_location}/${pmodule}.plugin.zsh"
|
2012-09-08 22:47:57 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
if (( $? == 0 )); then
|
|
|
|
zstyle ":prezto:module:$pmodule" loaded 'yes'
|
2018-02-12 23:14:08 +00:00
|
|
|
pdebuglog "Module %q loaded" $pmodule
|
2012-09-08 22:47:57 +00:00
|
|
|
else
|
|
|
|
# Remove the $fpath entry.
|
2017-11-13 00:01:39 +00:00
|
|
|
fpath[(r)${pmodule_location}/functions]=()
|
2012-09-08 22:47:57 +00:00
|
|
|
|
|
|
|
function {
|
|
|
|
local pfunction
|
|
|
|
|
|
|
|
# Extended globbing is needed for listing autoloadable function
|
|
|
|
# directories.
|
|
|
|
setopt LOCAL_OPTIONS EXTENDED_GLOB
|
|
|
|
|
|
|
|
# Unload Prezto functions.
|
2017-11-13 00:01:39 +00:00
|
|
|
for pfunction in ${pmodule_location}/functions/$~pfunction_glob; do
|
2012-09-08 22:47:57 +00:00
|
|
|
unfunction "$pfunction"
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2018-02-12 23:14:08 +00:00
|
|
|
pdebuglog "Module %q failed to load" $pmodule
|
2012-09-08 22:47:57 +00:00
|
|
|
zstyle ":prezto:module:$pmodule" loaded 'no'
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
#
|
|
|
|
# Prezto Initialization
|
|
|
|
#
|
|
|
|
|
2017-03-08 19:22:39 +00:00
|
|
|
# This finds the directory prezto is installed to so plugin managers don't need
|
|
|
|
# to rely on dirty hacks to force prezto into a directory. Additionally, it
|
|
|
|
# needs to be done here because inside the pmodload function ${0:h} evaluates to
|
|
|
|
# the current directory of the shell rather than the prezto dir.
|
|
|
|
ZPREZTODIR=${0:h}
|
2017-03-08 01:42:41 +00:00
|
|
|
|
2012-09-03 20:13:53 +00:00
|
|
|
# Source the Prezto configuration file.
|
|
|
|
if [[ -s "${ZDOTDIR:-$HOME}/.zpreztorc" ]]; then
|
|
|
|
source "${ZDOTDIR:-$HOME}/.zpreztorc"
|
|
|
|
fi
|
|
|
|
|
2011-12-26 18:37:53 +00:00
|
|
|
# Disable color and theme in dumb terminals.
|
2011-06-01 06:48:26 +00:00
|
|
|
if [[ "$TERM" == 'dumb' ]]; then
|
2012-09-03 20:08:39 +00:00
|
|
|
zstyle ':prezto:*:*' color 'no'
|
|
|
|
zstyle ':prezto:module:prompt' theme 'off'
|
2011-02-27 15:13:57 +00:00
|
|
|
fi
|
|
|
|
|
2012-03-28 16:41:39 +00:00
|
|
|
# Load Zsh modules.
|
2012-09-03 20:08:39 +00:00
|
|
|
zstyle -a ':prezto:load' zmodule 'zmodules'
|
2012-04-08 22:37:22 +00:00
|
|
|
for zmodule ("$zmodules[@]") zmodload "zsh/${(z)zmodule}"
|
2012-04-02 22:51:00 +00:00
|
|
|
unset zmodule{s,}
|
2012-03-30 19:45:44 +00:00
|
|
|
|
|
|
|
# Autoload Zsh functions.
|
2012-09-03 20:08:39 +00:00
|
|
|
zstyle -a ':prezto:load' zfunction 'zfunctions'
|
2012-04-08 22:37:22 +00:00
|
|
|
for zfunction ("$zfunctions[@]") autoload -Uz "$zfunction"
|
2012-04-02 22:51:00 +00:00
|
|
|
unset zfunction{s,}
|
2011-07-15 02:50:40 +00:00
|
|
|
|
2012-09-03 20:38:18 +00:00
|
|
|
# Load Prezto modules.
|
2012-09-03 20:08:39 +00:00
|
|
|
zstyle -a ':prezto:load' pmodule 'pmodules'
|
|
|
|
pmodload "$pmodules[@]"
|
|
|
|
unset pmodules
|