2015-12-15 00:12:17 -05:00
|
|
|
#
|
|
|
|
# Zim initializition
|
|
|
|
#
|
|
|
|
|
2018-04-09 19:20:54 -04:00
|
|
|
autoload -Uz is-at-least && if ! is-at-least 5.2; then
|
2017-07-30 19:24:58 -04:00
|
|
|
print "ERROR: Zim didn't start. You're using zsh version ${ZSH_VERSION}, and versions < 5.2 are not supported. Update your zsh." >&2
|
|
|
|
return 1
|
2017-06-28 17:55:48 -04:00
|
|
|
fi
|
|
|
|
|
2017-09-26 13:28:08 -04:00
|
|
|
# Autoload module functions
|
|
|
|
() {
|
2015-12-15 00:12:17 -05:00
|
|
|
local mod_function
|
2017-09-26 13:28:08 -04:00
|
|
|
setopt LOCAL_OPTIONS EXTENDED_GLOB
|
2015-12-15 00:12:17 -05:00
|
|
|
|
|
|
|
# autoload searches fpath for function locations; add enabled module function paths
|
2018-01-03 10:16:45 -05:00
|
|
|
fpath=(${ZIM_HOME}/modules/${^zmodules}/functions(/FN) ${fpath})
|
2015-12-15 00:12:17 -05:00
|
|
|
|
2018-04-09 19:20:54 -04:00
|
|
|
for mod_function in ${ZIM_HOME}/modules/${^zmodules}/functions/^(_*|prompt_*_setup|*.*)(-.N:t); do
|
2017-09-26 13:28:08 -04:00
|
|
|
autoload -Uz ${mod_function}
|
|
|
|
done
|
2015-12-15 00:12:17 -05:00
|
|
|
}
|
|
|
|
|
2017-09-26 13:28:08 -04:00
|
|
|
# Initialize modules
|
|
|
|
() {
|
2018-03-21 23:19:05 -04:00
|
|
|
local zmodule zmodule_dir zmodule_file
|
2015-12-15 00:12:17 -05:00
|
|
|
|
2018-04-25 09:59:19 -04:00
|
|
|
for zmodule in ${zmodules}; do
|
2018-03-21 23:19:05 -04:00
|
|
|
zmodule_dir=${ZIM_HOME}/modules/${zmodule}
|
|
|
|
if [[ ! -d ${zmodule_dir} ]]; then
|
2017-09-26 13:28:08 -04:00
|
|
|
print "No such module \"${zmodule}\"." >&2
|
2018-03-21 23:19:05 -04:00
|
|
|
else
|
2018-04-25 09:59:19 -04:00
|
|
|
for zmodule_file in ${zmodule_dir}/init.zsh \
|
|
|
|
${zmodule_dir}/{,zsh-}${zmodule}.{zsh,plugin.zsh,zsh-theme,sh}; do
|
2018-03-21 23:19:05 -04:00
|
|
|
if [[ -f ${zmodule_file} ]]; then
|
|
|
|
source ${zmodule_file}
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
done
|
2017-09-26 13:28:08 -04:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
2017-10-23 10:33:57 -04:00
|
|
|
|
|
|
|
zmanage() {
|
|
|
|
local usage="zmanage [action]
|
|
|
|
Actions:
|
|
|
|
update Fetch and merge upstream zim commits if possible
|
|
|
|
info Print zim and system info
|
|
|
|
issue Create a template for reporting an issue
|
|
|
|
clean-cache Clean the zim cache
|
|
|
|
build-cache Rebuild the zim cache
|
|
|
|
remove *experimental* Remove zim as best we can
|
|
|
|
reset Reset zim to the latest commit
|
|
|
|
debug Invoke the trace-zim script which produces logs
|
|
|
|
help Print this usage message"
|
|
|
|
|
|
|
|
if (( ${#} != 1 )); then
|
|
|
|
print ${usage}
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
case ${1} in
|
|
|
|
update) zsh ${ZIM_HOME}/tools/zim_update
|
|
|
|
;;
|
|
|
|
info) zsh ${ZIM_HOME}/tools/zim_info
|
|
|
|
;;
|
|
|
|
issue) zsh ${ZIM_HOME}/tools/zim_issue
|
|
|
|
;;
|
|
|
|
clean-cache) source ${ZIM_HOME}/tools/zim_clean_cache && print 'Cache cleaned'
|
|
|
|
;;
|
|
|
|
build-cache) source ${ZIM_HOME}/tools/zim_build_cache && print 'Cache rebuilt'
|
|
|
|
;;
|
2018-07-07 17:02:21 -04:00
|
|
|
reload) zmanage clean-cache && zmanage build-cache
|
|
|
|
;;
|
2017-10-23 10:33:57 -04:00
|
|
|
remove) zsh ${ZIM_HOME}/tools/zim_remove
|
|
|
|
;;
|
|
|
|
reset) zsh ${ZIM_HOME}/tools/zim_reset
|
|
|
|
;;
|
|
|
|
debug) zsh ${ZIM_HOME}/modules/debug/functions/trace-zim
|
|
|
|
;;
|
|
|
|
*) print ${usage}; return 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
}
|