2019-01-22 19:40:43 -05:00
# AUTOMATICALLY GENERATED FILE. EDIT ONLY THE SOURCE FILES AND THEN COMPILE.
# DO NOT DIRECTLY EDIT THIS FILE!
2019-12-08 20:03:45 -05:00
# MIT License
#
# Copyright (c) 2015-2016 Matt Hamilton and contributors
2021-01-04 21:20:03 -05:00
# Copyright (c) 2016-2021 Eric Nielsen, Matt Hamilton and contributors
2019-12-08 20:03:45 -05:00
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
2019-01-22 19:40:43 -05:00
autoload -Uz is-at-least && if ! is-at-least 5.2; then
2020-01-13 13:14:31 -05:00
print -u2 -PR " %F{red} ${ 0 } : Error starting Zim. You're using Zsh version %B ${ ZSH_VERSION } %b and versions < %B5.2%b are not supported. Upgrade your Zsh.%f "
2019-01-22 19:40:43 -05:00
return 1
fi
# Define Zim location
2019-12-01 16:00:47 -05:00
: ${ ZIM_HOME = ${ 0 : A : h } }
2019-01-22 19:40:43 -05:00
2020-01-09 07:13:31 -05:00
_zimfw_print( ) {
2020-02-03 20:43:36 -05:00
if ( ( _zprintlevel > 0 ) ) print " ${ @ } "
2020-01-09 07:13:31 -05:00
}
2019-12-14 22:21:34 -05:00
_zimfw_mv( ) {
2020-05-25 14:40:34 -04:00
local -a cklines
if cklines = ( ${ (f) " $( command cksum ${ 1 } ${ 2 } 2>/dev/null) " } ) && \
[ [ ${ ${ (z)cklines[1] } [1,2] } = = ${ ${ (z)cklines[2] } [1,2] } ] ] ; then
2020-01-09 07:13:31 -05:00
_zimfw_print -PR " %F{green})%f %B ${ 2 } :%b Already up to date "
2019-12-14 22:21:34 -05:00
else
if [ [ -e ${ 2 } ] ] ; then
command mv -f ${ 2 } { ,.old} || return 1
fi
command mv -f ${ 1 } ${ 2 } && \
2020-01-09 07:13:31 -05:00
_zimfw_print -PR " %F{green})%f %B ${ 2 } :%b Updated. Restart your terminal for changes to take effect. "
2019-12-14 22:21:34 -05:00
fi
}
_zimfw_build_init( ) {
local -r ztarget = ${ ZIM_HOME } /init.zsh
# Force update of init.zsh if it's older than .zimrc
if [ [ ${ ztarget } -ot ${ ZDOTDIR :- ${ HOME } } /.zimrc ] ] ; then
command mv -f ${ ztarget } { ,.old} || return 1
fi
_zimfw_mv = (
print -R " zimfw() { source ${ ZIM_HOME } /zimfw.zsh \"\${@}\" } "
2020-02-03 20:43:36 -05:00
if ( ( ${# _zfpaths } ) ) print -R 'fpath=(' ${ _zfpaths : A } ' ${fpath})'
if ( ( ${# _zfunctions } ) ) print -R 'autoload -Uz ' ${ _zfunctions }
2020-07-02 18:16:44 -04:00
print -R ${ (F)_zcmds }
2019-12-14 22:21:34 -05:00
) ${ ztarget }
}
_zimfw_build_login_init( ) {
2020-07-04 15:59:37 -04:00
# Array with unique dirs. ${ZIM_HOME} or any subdirectory should only occur once.
local -Ur zscriptdirs = ( ${ ZIM_HOME } ${ ${ _zdirs ## ${ ZIM_HOME } /* } : A } )
2020-06-05 23:09:23 -04:00
local -r zscriptglob = ( " ${ ^zscriptdirs[@] } /(^*test*/)#*.zsh(|-theme)(N-.) " )
2019-12-14 22:21:34 -05:00
local -r ztarget = ${ ZIM_HOME } /login_init.zsh
2020-11-23 09:38:08 -05:00
# Force update of login_init.zsh if it's older than .zimrc
if [ [ ${ ztarget } -ot ${ ZDOTDIR :- ${ HOME } } /.zimrc ] ] ; then
command mv -f ${ ztarget } { ,.old} || return 1
fi
2019-12-14 22:21:34 -05:00
_zimfw_mv = (
print -Rn " () {
2019-12-12 09:00:19 -05:00
setopt LOCAL_OPTIONS CASE_GLOB EXTENDED_GLOB
2019-12-27 09:51:02 -05:00
autoload -Uz zrecompile
local zdumpfile zfile
2019-01-22 19:40:43 -05:00
# Compile the completion cache; significant speedup
2019-12-14 22:21:34 -05:00
zstyle -s ':zim:completion' dumpfile 'zdumpfile' || zdumpfile = \$ { ZDOTDIR:-\$ { HOME} } /.zcompdump
if [ [ -f \$ { zdumpfile} ] ] ; then
zrecompile -p \$ { 1} \$ { zdumpfile} || return 1
2019-01-22 19:40:43 -05:00
fi
2019-12-27 09:51:02 -05:00
# Compile Zsh startup files
2020-06-05 23:09:23 -04:00
for zfile in \$ { ZDOTDIR:-\$ { HOME} } /.z( shenv| profile| shrc| login| logout ) ( N-.) ; do
2019-12-27 09:51:02 -05:00
zrecompile -p \$ { 1} \$ { zfile} || return 1
2019-01-22 19:40:43 -05:00
done
2019-12-27 09:51:02 -05:00
# Compile Zim scripts
2020-06-05 23:09:23 -04:00
for zfile in ${ zscriptglob } ; do
2019-12-14 22:21:34 -05:00
zrecompile -p \$ { 1} \$ { zfile} || return 1
2019-01-22 19:40:43 -05:00
done
2020-06-05 23:09:23 -04:00
if [ [ \$ { 1} != -q ] ] print -P 'Done with compile.'
2019-12-14 22:21:34 -05:00
} \" \$ { @} \"
"
) ${ ztarget }
2019-01-22 19:40:43 -05:00
}
2019-12-01 16:00:47 -05:00
_zimfw_build( ) {
2020-01-09 07:13:31 -05:00
_zimfw_build_init && _zimfw_build_login_init && _zimfw_print -P 'Done with build.'
2019-01-22 19:40:43 -05:00
}
2019-12-01 16:00:47 -05:00
zmodule( ) {
2020-01-13 13:14:31 -05:00
local -r zusage = " Usage: %B ${ 0 } %b <url> [%B-n%b|%B--name%b <module_name>] [options]
2019-01-22 19:40:43 -05:00
2020-05-02 19:47:38 -04:00
Add %Bzmodule%b calls to your %B${ ZDOTDIR :- ${ HOME } } /.zimrc%b file to define the modules to be initialized.
The modules are initialized in the same order they are defined.
2020-10-11 13:24:01 -04:00
<url> Module absolute path or repository URL. The following URL formats
are equivalent: %Bname%b, %Bzimfw/name%b, %Bhttps://github.com/zimfw/name.git%b.
%B-n%b| %B--name%b <module_name> Set a custom module name. Default: the last component in the <url>.
2020-05-02 19:47:38 -04:00
2019-12-01 16:00:47 -05:00
Repository options:
2020-10-11 13:24:01 -04:00
%B-b%b| %B--branch%b <branch_name> Use specified branch when installing and updating the module.
2021-01-02 19:09:52 -05:00
Overrides the tag option. Default: the repository' s default branch.
2020-10-11 13:24:01 -04:00
%B-t%b| %B--tag%b <tag_name> Use specified tag when installing and updating the module.
Overrides the branch option.
%B-z%b| %B--frozen%b Don' t install or update the module.
2019-12-01 16:00:47 -05:00
2020-05-02 19:47:38 -04:00
Initialization options:
2020-10-11 13:24:01 -04:00
%B-f%b| %B--fpath%b <path> Add specified path to fpath. The path is relative to the module
root directory. Default: %Bfunctions%b, if the subdirectory exists.
%B-a%b| %B--autoload%b <func_name> Autoload specified function . Default: all valid names inside the
module' s specified fpath paths.
%B-s%b| %B--source%b <file_path> Source specified file. The file path is relative to the module root
2021-03-19 19:44:53 -04:00
directory. Default: %Binit.zsh%b, if the %Bfunctions%b subdirectory also
exists, or the file with largest size matching
2020-10-11 13:24:01 -04:00
%B{ init.zsh,module_name.{ zsh,plugin.zsh,zsh-theme,sh} } %b, if any exist.
%B-c%b| %B--cmd%b <command> Execute specified command. Occurrences of the %B{ } %b placeholder in the
command are substituted by the module root directory path.
%B-s 'script.zsh' %b and %B-c 'source {}/script.zsh' %b are equivalent.
%B-d%b| %B--disabled%b Don' t initialize or uninstall the module.
2019-12-01 16:00:47 -05:00
"
if [ [ ${ ${ funcfiletrace [1]% : * } : t } != .zimrc ] ] ; then
2020-01-13 13:14:31 -05:00
print -u2 -PR " %F{red} ${ 0 } : Must be called from %B ${ ZDOTDIR :- ${ HOME } } /.zimrc%b%f " $'\n\n' ${ zusage }
2021-03-19 18:13:21 -04:00
return 2
2019-12-01 16:00:47 -05:00
fi
if ( ( ! # )); then
2020-05-25 15:01:00 -04:00
print -u2 -PR " %F{red}x ${ funcfiletrace [1] } : Missing zmodule url%f " $'\n\n' ${ zusage }
2019-12-01 16:00:47 -05:00
_zfailed = 1
2021-03-19 18:13:21 -04:00
return 2
2019-12-01 16:00:47 -05:00
fi
2019-12-12 09:00:19 -05:00
setopt LOCAL_OPTIONS CASE_GLOB EXTENDED_GLOB
2019-12-01 16:00:47 -05:00
local zmodule = ${ 1 : t } zurl = ${ 1 }
2021-01-04 21:20:03 -05:00
local ztype zrev
2019-12-01 16:00:47 -05:00
local -i zdisabled = 0 zfrozen = 0
2020-07-02 18:16:44 -04:00
local -a zfpaths zfunctions zcmds
2020-06-05 23:09:23 -04:00
local zarg zdir
2019-12-01 16:00:47 -05:00
if [ [ ${ zurl } = ~ ^[ ^:/] +: ] ] ; then
zmodule = ${ zmodule %.git }
elif [ [ ${ zurl } != /* ] ] ; then
# Count number of slashes
case ${# zurl //[^ \/ ]/ } in
0) zurl = " https://github.com/zimfw/ ${ zurl } .git " ; ;
1) zurl = " https://github.com/ ${ zurl } .git " ; ;
esac
fi
shift
if [ [ ${ 1 } = = ( -n| --name) ] ] ; then
if ( ( # < 2 )); then
2020-05-25 15:01:00 -04:00
print -u2 -PR " %F{red}x ${ funcfiletrace [1] } :%B ${ zmodule } :%b Missing argument for zmodule option ${ 1 } %f " $'\n\n' ${ zusage }
2019-12-01 16:00:47 -05:00
_zfailed = 1
2021-03-19 18:13:21 -04:00
return 2
2019-01-22 19:40:43 -05:00
fi
2019-12-01 16:00:47 -05:00
shift
zmodule = ${ 1 }
shift
fi
2020-06-05 23:09:23 -04:00
if [ [ ${ zurl } = = /* ] ] ; then
zdir = ${ zurl }
else
zdir = ${ ZIM_HOME } /modules/${ zmodule }
fi
2019-12-01 16:00:47 -05:00
while ( ( # > 0 )); do
case ${ 1 } in
2020-11-07 14:39:30 -05:00
-b| --branch| -t| --tag| -f| --fpath| -a| --autoload| -s| --source| -c| --cmd)
2019-12-01 16:00:47 -05:00
if ( ( # < 2 )); then
2020-05-25 15:01:00 -04:00
print -u2 -PR " %F{red}x ${ funcfiletrace [1] } :%B ${ zmodule } :%b Missing argument for zmodule option ${ 1 } %f " $'\n\n' ${ zusage }
2019-12-01 16:00:47 -05:00
_zfailed = 1
2021-03-19 18:13:21 -04:00
return 2
2019-12-01 16:00:47 -05:00
fi
; ;
esac
case ${ 1 } in
-b| --branch)
shift
ztype = branch
zrev = ${ 1 }
; ;
-t| --tag)
shift
ztype = tag
zrev = ${ 1 }
; ;
-z| --frozen) zfrozen = 1 ; ;
-f| --fpath)
shift
zarg = ${ 1 }
2020-02-03 20:43:36 -05:00
if [ [ ${ zarg } != /* ] ] zarg = ${ zdir } /${ zarg }
2019-12-01 16:00:47 -05:00
zfpaths += ( ${ zarg } )
; ;
-a| --autoload)
shift
zfunctions += ( ${ 1 } )
; ;
-s| --source)
shift
zarg = ${ 1 }
2020-02-03 20:43:36 -05:00
if [ [ ${ zarg } != /* ] ] zarg = ${ zdir } /${ zarg }
2020-07-02 18:16:44 -04:00
zcmds += ( " source ${ zarg : A } " )
; ;
-c| --cmd)
shift
zcmds += ( ${ 1 //{ } /${ zdir : A } } )
2019-12-01 16:00:47 -05:00
; ;
-d| --disabled) zdisabled = 1 ; ;
*)
2020-05-25 15:01:00 -04:00
print -u2 -PR " %F{red}x ${ funcfiletrace [1] } :%B ${ zmodule } :%b Unknown zmodule option ${ 1 } %f " $'\n\n' ${ zusage }
2019-12-01 16:00:47 -05:00
_zfailed = 1
2021-03-19 18:13:21 -04:00
return 2
2019-12-01 16:00:47 -05:00
; ;
esac
shift
2019-01-22 19:40:43 -05:00
done
2020-05-16 21:22:22 -04:00
if ( ( _zprepare_zargs ) ) ; then
2019-12-03 07:07:59 -05:00
if ( ( ! zfrozen ) ) ; then
2021-01-04 21:20:03 -05:00
_zmodules_zargs += ( ${ zmodule } ${ zdir } ${ zurl } " ${ ztype } " " ${ zrev } " ${ _zprintlevel } )
2019-12-01 16:00:47 -05:00
fi
2019-12-03 07:07:59 -05:00
else
if ( ( zdisabled ) ) ; then
_zdisableds += ( ${ zmodule } )
else
2019-12-07 21:17:40 -05:00
if [ [ ! -d ${ zdir } ] ] ; then
2020-05-02 10:05:11 -04:00
print -u2 -PR " %F{red}x ${ funcfiletrace [1] } :%B ${ zmodule } :%b Not installed. Run %Bzimfw install%b to install.%f "
2019-12-07 21:17:40 -05:00
_zfailed = 1
return 1
fi
2021-03-16 18:04:40 -04:00
local -ra prezto_fpaths = ( ${ zdir } /functions( NF) )
local -ra prezto_scripts = ( ${ zdir } /init.zsh( N) )
if ( ( ! ${# zfpaths } && ! ${# zcmds } && ${# prezto_fpaths } && ${# prezto_scripts } ) ) ; then
# this follows the prezto module format, no need to check for other scripts
zfpaths = ( ${ prezto_fpaths } )
zcmds = ( " source ${ ^prezto_scripts[@] : A } " )
else
if ( ( ! ${# zfpaths } ) ) zfpaths = ( ${ prezto_fpaths } )
if ( ( ! ${# zcmds } ) ) ; then
# get script with largest size (descending `O`rder by `L`ength, and return only `[1]` first)
local -r zscript = ( ${ zdir } /( init.zsh| ${ zmodule : t } .( zsh| plugin.zsh| zsh-theme| sh) ) ( NOL[ 1] ) )
zcmds = ( " source ${ ^zscript[@] : A } " )
fi
fi
2019-12-03 07:07:59 -05:00
if ( ( ! ${# zfunctions } ) ) ; then
# _* functions are autoloaded by compinit
# prompt_*_setup functions are autoloaded by promptinit
2021-03-16 18:04:40 -04:00
zfunctions = ( ${ ^zfpaths } /^( *~| *.zwc( | .old) | _*| prompt_*_setup) ( N-.:t) )
2019-12-03 07:07:59 -05:00
fi
2020-07-02 18:16:44 -04:00
if ( ( ! ${# zfpaths } && ! ${# zfunctions } && ! ${# zcmds } ) ) ; then
2020-05-25 15:01:00 -04:00
print -u2 -PR " %F{yellow}! ${ funcfiletrace [1] } :%B ${ zmodule } :%b Nothing found to be initialized. Customize the module name or initialization with %Bzmodule%b options.%f " $'\n\n' ${ zusage }
fi
2020-07-02 18:16:44 -04:00
_zmodules += ( ${ zmodule } )
_zdirs += ( ${ zdir } )
2019-12-03 07:07:59 -05:00
_zfpaths += ( ${ zfpaths } )
_zfunctions += ( ${ zfunctions } )
2020-07-02 18:16:44 -04:00
_zcmds += ( ${ zcmds } )
2019-12-01 16:00:47 -05:00
fi
fi
}
_zimfw_source_zimrc( ) {
2020-01-26 15:33:17 -05:00
local -r ztarget = ${ ZDOTDIR :- ${ HOME } } /.zimrc
2020-05-16 21:22:22 -04:00
local -ri _zprepare_zargs = ${ 1 }
2019-12-01 16:00:47 -05:00
local -i _zfailed = 0
2020-01-26 15:33:17 -05:00
if ! source ${ ztarget } || ( ( _zfailed ) ) ; then
print -u2 -PR " %F{red}Failed to source %B ${ ztarget } %b%f "
return 1
fi
2020-05-16 21:22:22 -04:00
if ( ( _zprepare_zargs && ! ${# _zmodules_zargs } ) ) ; then
2020-01-26 15:33:17 -05:00
print -u2 -PR " %F{red}No modules defined in %B ${ ztarget } %b%f "
2019-12-01 16:00:47 -05:00
return 1
fi
2019-01-22 19:40:43 -05:00
}
2020-01-15 12:35:30 -05:00
_zimfw_version_check( ) {
if ( ( _zprintlevel > 0 ) ) ; then
setopt LOCAL_OPTIONS EXTENDED_GLOB
local -r ztarget = ${ ZIM_HOME } /.latest_version
# If .latest_version does not exist or was not modified in the last 30 days
2020-01-26 15:33:17 -05:00
if [ [ -w ${ ztarget : h } && ! -f ${ ztarget } ( #qNm-30) ]]; then
2021-03-19 19:14:31 -04:00
# Get latest version (get all `v*` tags from repo, delete `*v` from beginning, sort in descending `O`rder
# `n`umerically, and get the `[1]` first)
print ${ ${ (On) ${ (f) " $( command git ls-remote --tags --refs https://github.com/zimfw/zimfw.git 'v*' ) " } ##*v } [1] } >! ${ ztarget } & !
2020-01-15 12:35:30 -05:00
fi
2020-01-22 12:48:19 -05:00
if [ [ -f ${ ztarget } ] ] ; then
local -r zlatest_version = $( <${ ztarget } )
if [ [ -n ${ zlatest_version } && ${ _zversion } != ${ zlatest_version } ] ] ; then
print -u2 -PR " %F{yellow}Latest zimfw version is %B ${ zlatest_version } %b. You're using version %B ${ _zversion } %b. Run %Bzimfw upgrade%b to upgrade.%f " $'\n'
fi
2020-01-15 12:35:30 -05:00
fi
fi
}
2019-01-22 19:40:43 -05:00
_zimfw_clean_compiled( ) {
2020-07-31 22:03:47 -04:00
# Array with unique dirs. ${ZIM_HOME} or any subdirectory should only occur once.
local -Ur zscriptdirs = ( ${ ZIM_HOME } ${ ${ _zdirs ## ${ ZIM_HOME } /* } : A } )
2019-12-27 09:51:02 -05:00
local zopt
2020-02-03 20:43:36 -05:00
if ( ( _zprintlevel > 0 ) ) zopt = '-v'
2020-07-31 22:03:47 -04:00
command rm -f ${ zopt } ${ ^zscriptdirs } /**/*.zwc( | .old) ( N) || return 1
2020-01-08 08:19:52 -05:00
command rm -f ${ zopt } ${ ZDOTDIR :- ${ HOME } } /.z( shenv| profile| shrc| login| logout ) .zwc( | .old) ( N) || return 1
2020-01-09 07:13:31 -05:00
_zimfw_print -P 'Done with clean-compiled. Run %Bzimfw compile%b to re-compile.'
2019-01-22 19:40:43 -05:00
}
_zimfw_clean_dumpfile( ) {
2019-12-01 16:00:47 -05:00
local zdumpfile zopt
2019-12-14 22:21:34 -05:00
zstyle -s ':zim:completion' dumpfile 'zdumpfile' || zdumpfile = ${ ZDOTDIR :- ${ HOME } } /.zcompdump
2020-02-03 20:43:36 -05:00
if ( ( _zprintlevel > 0 ) ) zopt = '-v'
2020-01-09 07:21:16 -05:00
command rm -f ${ zopt } ${ zdumpfile } ( | .zwc( | .old) ) ( N) || return 1
2020-01-09 07:13:31 -05:00
_zimfw_print -P 'Done with clean-dumpfile. Restart your terminal to dump an updated configuration.'
2019-01-22 19:40:43 -05:00
}
2019-12-14 22:21:34 -05:00
_zimfw_compile( ) {
2020-01-11 16:23:11 -05:00
local zopt
2020-02-03 20:43:36 -05:00
if ( ( _zprintlevel <= 0 ) ) zopt = '-q'
2020-01-11 16:23:11 -05:00
source ${ ZIM_HOME } /login_init.zsh ${ zopt }
2019-12-14 22:21:34 -05:00
}
2019-01-22 19:40:43 -05:00
_zimfw_info( ) {
2021-03-19 19:44:53 -04:00
print -R 'zimfw version: ' ${ _zversion } ' (built at 2021-03-19 23:42:38 UTC, previous commit is 163d36b)'
2020-01-15 12:35:30 -05:00
print -R 'ZIM_HOME: ' ${ ZIM_HOME }
print -R 'Zsh version: ' ${ ZSH_VERSION }
print -R 'System info: ' $( command uname -a)
2019-01-22 19:40:43 -05:00
}
2019-12-10 18:19:01 -05:00
_zimfw_uninstall( ) {
2020-10-26 20:32:25 -04:00
local zopt
2020-02-03 20:43:36 -05:00
if ( ( _zprintlevel > 0 ) ) zopt = '-v'
2020-10-26 20:32:25 -04:00
local zuninstalls = ( ${ ZIM_HOME } /modules/*( N/:t) )
# Uninstall all installed modules not in _zmodules and _zdisableds
zuninstalls = ( ${ ${ zuninstalls : |_zmodules } : |_zdisableds } )
if ( ( ${# zuninstalls } ) ) ; then
_zimfw_print -PR %B${ (F)zuninstalls } %b
if ( ( _zprintlevel <= 0 ) ) || read -q " ?Uninstall ${# zuninstalls } module(s) listed above [y/N]? " ; then
_zimfw_print
command rm -rf ${ zopt } ${ ZIM_HOME } /modules/${ ^zuninstalls } || return 1
2019-12-10 18:19:01 -05:00
fi
2020-10-26 20:32:25 -04:00
fi
2020-01-09 07:13:31 -05:00
_zimfw_print -P 'Done with uninstall.'
2019-12-10 18:19:01 -05:00
}
2019-01-22 19:40:43 -05:00
_zimfw_upgrade( ) {
2019-12-14 22:21:34 -05:00
local -r ztarget = ${ ZIM_HOME } /zimfw.zsh
2020-01-11 17:17:09 -05:00
local -r zurl = https://github.com/zimfw/zimfw/releases/latest/download/zimfw.zsh.gz
2019-12-01 16:00:47 -05:00
{
2020-01-11 16:35:59 -05:00
if ( ( ${ +commands[curl] } ) ) ; then
2020-07-23 22:49:39 -04:00
command curl -fsSL -o ${ ztarget } .new.gz ${ zurl } || return 1
2020-01-11 16:35:59 -05:00
else
2020-01-11 16:23:11 -05:00
local zopt
2020-02-03 20:43:36 -05:00
if ( ( _zprintlevel <= 1 ) ) zopt = '-q'
2020-07-23 22:49:39 -04:00
if ! command wget -nv ${ zopt } -O ${ ztarget } .new.gz ${ zurl } ; then
2020-02-03 20:43:36 -05:00
if ( ( _zprintlevel <= 1 ) ) print -u2 -PR " %F{red}x Error downloading %B ${ zurl } %b. Use %B-v%b option to see details.%f "
2020-01-11 16:23:11 -05:00
return 1
fi
2019-12-01 16:00:47 -05:00
fi
2020-07-23 22:49:39 -04:00
command gunzip -f ${ ztarget } .new.gz || return 1
2020-01-20 07:03:20 -05:00
# .latest_version can be outdated and will yield a false warning if zimfw is
# upgraded before .latest_version is refreshed. Bad thing about having a cache.
_zimfw_mv ${ ztarget } { .new,} && command rm -f ${ ZIM_HOME } /.latest_version && \
_zimfw_print -P 'Done with upgrade.'
2019-12-01 16:00:47 -05:00
} always {
2020-07-23 22:49:39 -04:00
command rm -f ${ ztarget } .new{ ,.gz}
2019-12-01 16:00:47 -05:00
}
2019-01-22 19:40:43 -05:00
}
zimfw( ) {
2021-03-19 19:44:53 -04:00
local -r _zversion = '1.4.3'
2020-01-13 13:14:31 -05:00
local -r zusage = " Usage: %B ${ 0 } %b <action> [%B-q%b|%B-v%b]
2019-01-22 19:40:43 -05:00
2019-12-01 16:00:47 -05:00
Actions:
2020-05-02 19:47:38 -04:00
%Bbuild%b Build %Binit.zsh%b and %Blogin_init.zsh%b
2019-12-01 16:00:47 -05:00
%Bclean%b Clean all ( see below)
%Bclean-compiled%b Clean Zsh compiled files
%Bclean-dumpfile%b Clean completion dump file
%Bcompile%b Compile Zsh files
2020-01-13 12:24:43 -05:00
%Bhelp%b Print this help
2019-12-01 16:00:47 -05:00
%Binfo%b Print Zim and system info
%Binstall%b Install new modules
2019-12-10 18:19:01 -05:00
%Buninstall%b Delete unused modules
2019-12-01 16:00:47 -05:00
%Bupdate%b Update current modules
2020-05-02 19:47:38 -04:00
%Bupgrade%b Upgrade %Bzimfw.zsh%b
2020-01-13 12:24:43 -05:00
%Bversion%b Print Zim version
2019-12-01 16:00:47 -05:00
Options:
2021-01-07 13:41:35 -05:00
%B-q%b Quiet ( yes to prompts, and only outputs errors)
2020-01-11 16:23:11 -05:00
%B-v%b Verbose
2019-12-01 16:00:47 -05:00
"
2020-05-16 21:22:22 -04:00
local ztool
2020-07-02 18:16:44 -04:00
local -a _zdisableds _zmodules _zdirs _zfpaths _zfunctions _zcmds _zmodules_zargs
2020-01-11 16:23:11 -05:00
local -i _zprintlevel = 1
2019-12-01 16:00:47 -05:00
if ( ( # > 2 )); then
2020-01-13 13:14:31 -05:00
print -u2 -PR " %F{red} ${ 0 } : Too many options%f " $'\n\n' ${ zusage }
2021-03-19 18:13:21 -04:00
return 2
2019-12-01 16:00:47 -05:00
elif ( ( # > 1 )); then
case ${ 2 } in
2020-01-11 16:23:11 -05:00
-q) _zprintlevel = 0 ; ;
-v) _zprintlevel = 2 ; ;
2019-12-01 16:00:47 -05:00
*)
2020-01-13 13:14:31 -05:00
print -u2 -PR " %F{red} ${ 0 } : Unknown option ${ 2 } %f " $'\n\n' ${ zusage }
2021-03-19 18:13:21 -04:00
return 2
2019-12-01 16:00:47 -05:00
; ;
esac
2019-01-22 19:40:43 -05:00
fi
2020-01-15 12:35:30 -05:00
if ! zstyle -t ':zim' disable-version-check; then
_zimfw_version_check
2020-01-13 13:14:31 -05:00
fi
2019-01-22 19:40:43 -05:00
case ${ 1 } in
install)
ztool = " # This runs in a new shell
2019-12-01 16:00:47 -05:00
readonly MODULE = \$ { 1}
readonly DIR = \$ { 2}
readonly URL = \$ { 3}
2021-01-02 19:09:52 -05:00
readonly BRANCH = \$ { 5:+-b \$ { 5} }
2020-01-11 16:23:11 -05:00
readonly -i PRINTLEVEL = \$ { 6}
2019-12-01 16:00:47 -05:00
readonly CLEAR_LINE = $'\E[2K\r'
2019-01-22 19:40:43 -05:00
if [ [ -e \$ { DIR} ] ] ; then
# Already exists
return 0
fi
2020-02-03 20:43:36 -05:00
if ( ( PRINTLEVEL > 0 ) ) print -Rn \$ { CLEAR_LINE} \" Installing \$ { MODULE} ...\"
2021-01-02 19:09:52 -05:00
if ERR = \$ ( command git clone \$ { = BRANCH} -q --recursive \$ { URL} \$ { DIR} 2>& 1) ; then
2020-02-03 20:43:36 -05:00
if ( ( PRINTLEVEL > 0 ) ) print -PR \$ { CLEAR_LINE} \" %F{ green} ) %f %B\$ { MODULE} :%b Installed\"
2019-01-22 19:40:43 -05:00
else
2019-12-13 07:14:10 -05:00
print -u2 -PR \$ { CLEAR_LINE} \" %F{ red} x %B\$ { MODULE} :%b Error during git clone%f\" $'\n' \$ { ( F) :- \$ { ( f) ^ERR} }
2019-01-22 19:40:43 -05:00
return 1
fi
"
; ;
update)
ztool = " # This runs in a new shell
2019-12-01 16:00:47 -05:00
readonly MODULE = \$ { 1}
readonly DIR = \$ { 2}
readonly URL = \$ { 3}
2021-01-04 21:20:03 -05:00
readonly TYPE = \$ { 4:= branch}
2021-02-17 15:55:38 -05:00
REV = \$ { 5}
2020-01-11 16:23:11 -05:00
readonly -i PRINTLEVEL = \$ { 6}
2019-12-01 16:00:47 -05:00
readonly CLEAR_LINE = $'\E[2K\r'
2020-02-03 20:43:36 -05:00
if ( ( PRINTLEVEL > 0 ) ) print -Rn \$ { CLEAR_LINE} \" Updating \$ { MODULE} ...\"
2019-12-12 08:46:27 -05:00
if ! builtin cd -q \$ { DIR} 2>/dev/null; then
2020-05-02 10:05:11 -04:00
print -u2 -PR \$ { CLEAR_LINE} \" %F{ red} x %B\$ { MODULE} :%b Not installed. Run %Bzimfw install%b to install.%f\"
2019-01-22 19:40:43 -05:00
return 1
fi
if [ [ \$ { PWD} != \$ ( command git rev-parse --show-toplevel 2>/dev/null) ] ] ; then
# Not in repo root. Will not try to update.
return 0
fi
if [ [ \$ { URL} != \$ ( command git config --get remote.origin.url) ] ] ; then
2019-12-13 07:14:10 -05:00
print -u2 -PR \$ { CLEAR_LINE} \" %F{ red} x %B\$ { MODULE} :%b URL does not match. Expected \$ { URL} . Will not try to update.%f\"
2019-01-22 19:40:43 -05:00
return 1
fi
2021-02-19 15:17:10 -05:00
if ! ERR = \$ ( command git fetch -pq origin 2>& 1) ; then
print -u2 -PR \$ { CLEAR_LINE} \" %F{ red} x %B\$ { MODULE} :%b Error during git fetch%f\" $'\n' \$ { ( F) :- \$ { ( f) ^ERR} }
return 1
fi
2019-01-22 19:40:43 -05:00
if [ [ \$ { TYPE} = = tag ] ] ; then
if [ [ \$ { REV} = = \$ ( command git describe --tags --exact-match 2>/dev/null) ] ] ; then
2020-02-03 20:43:36 -05:00
if ( ( PRINTLEVEL > 0 ) ) print -PR \$ { CLEAR_LINE} \" %F{ green} ) %f %B\$ { MODULE} :%b Already up to date\"
2019-01-22 19:40:43 -05:00
return 0
fi
2021-02-17 17:51:22 -05:00
elif [ [ -z \$ { REV} ] ] ; then
# Get HEAD remote branch
if ! ERR = \$ ( command git remote set-head origin -a 2>& 1) ; then
print -u2 -PR \$ { CLEAR_LINE} \" %F{ red} x %B\$ { MODULE} :%b Error during git remote set-head%f\" $'\n' \$ { ( F) :- \$ { ( f) ^ERR} }
return 1
fi
REV = \$ { \$ ( command git symbolic-ref --short refs/remotes/origin/HEAD) #origin/} || return 1
2019-01-22 19:40:43 -05:00
fi
if [ [ \$ { TYPE} = = branch ] ] ; then
2019-12-01 16:00:47 -05:00
LOG_REV = \$ { REV} @{ u}
2019-01-22 19:40:43 -05:00
else
LOG_REV = \$ { REV}
fi
2021-01-02 19:09:52 -05:00
LOG = \$ ( command git log --graph --color --format= '%C(yellow)%h%C(reset) %s %C(cyan)(%cr)%C(reset)' ..\$ { LOG_REV} -- 2>/dev/null)
2019-01-22 19:40:43 -05:00
if ! ERR = \$ ( command git checkout -q \$ { REV} -- 2>& 1) ; then
2019-12-13 07:14:10 -05:00
print -u2 -PR \$ { CLEAR_LINE} \" %F{ red} x %B\$ { MODULE} :%b Error during git checkout%f\" $'\n' \$ { ( F) :- \$ { ( f) ^ERR} }
2019-01-22 19:40:43 -05:00
return 1
fi
if [ [ \$ { TYPE} = = branch ] ] ; then
if ! OUT = \$ ( command git merge --ff-only --no-progress -n 2>& 1) ; then
2019-12-13 07:14:10 -05:00
print -u2 -PR \$ { CLEAR_LINE} \" %F{ red} x %B\$ { MODULE} :%b Error during git merge%f\" $'\n' \$ { ( F) :- \$ { ( f) ^OUT} }
2019-01-22 19:40:43 -05:00
return 1
fi
# keep just first line of OUT
OUT = \$ { OUT%%( $'\n' | $'\r' ) *}
else
OUT = \" Updating to \$ { TYPE} \$ { REV} \"
fi
2021-02-17 17:51:22 -05:00
if ! ERR = \$ ( command git submodule update --init --recursive -q 2>& 1) ; then
2019-12-13 07:14:10 -05:00
print -u2 -PR \$ { CLEAR_LINE} \" %F{ red} x %B\$ { MODULE} :%b Error during git submodule update%f\" $'\n' \$ { ( F) :- \$ { ( f) ^ERR} }
2019-01-22 19:40:43 -05:00
return 1
fi
2021-02-17 17:51:22 -05:00
if ( ( PRINTLEVEL > 0 ) ) ; then
if [ [ -n \$ { LOG} ] ] OUT = \$ { OUT} $'\n' \$ { ( F) :- \$ { ( f) ^LOG} }
print -PR \$ { CLEAR_LINE} \" %F{ green} ) %f %B\$ { MODULE} :%b \$ { OUT} \"
fi
2019-01-22 19:40:43 -05:00
"
; ;
esac
case ${ 1 } in
2020-01-11 16:23:11 -05:00
build)
_zimfw_source_zimrc && _zimfw_build || return 1
( ( _zprintlevel-- ) )
_zimfw_compile
; ;
2019-12-07 21:17:40 -05:00
init) _zimfw_source_zimrc && _zimfw_build ; ;
2020-07-31 22:03:47 -04:00
clean) _zimfw_source_zimrc && _zimfw_clean_compiled && _zimfw_clean_dumpfile ; ;
clean-compiled) _zimfw_source_zimrc && _zimfw_clean_compiled ; ;
2019-12-01 16:00:47 -05:00
clean-dumpfile) _zimfw_clean_dumpfile ; ;
2020-06-05 23:09:23 -04:00
compile) _zimfw_source_zimrc && _zimfw_build_login_init && _zimfw_compile ; ;
2020-01-13 13:14:31 -05:00
help ) print -PR ${ zusage } ; ;
2019-12-01 16:00:47 -05:00
info) _zimfw_info ; ;
2019-01-22 19:40:43 -05:00
install| update)
2019-12-03 07:07:59 -05:00
_zimfw_source_zimrc 1 || return 1
2020-05-16 21:22:22 -04:00
autoload -Uz zargs && \
2021-01-02 19:09:52 -05:00
zargs -n 9 -P 10 -- " ${ _zmodules_zargs [@] } " -- zsh -c ${ ztool } ${ 1 } && \
2020-01-11 16:23:11 -05:00
_zimfw_print -PR " Done with ${ 1 } . Restart your terminal for any changes to take effect. " || return 1
( ( _zprintlevel-- ) )
_zimfw_source_zimrc && _zimfw_build && _zimfw_compile
2019-01-22 19:40:43 -05:00
; ;
2019-12-10 18:19:01 -05:00
uninstall) _zimfw_source_zimrc && _zimfw_uninstall ; ;
2020-01-11 16:23:11 -05:00
upgrade)
_zimfw_upgrade || return 1
( ( _zprintlevel-- ) )
2020-01-13 15:00:09 -05:00
_zimfw_compile
2020-01-11 16:23:11 -05:00
; ;
2020-01-13 13:14:31 -05:00
version) print -PR ${ _zversion } ; ;
2019-01-22 19:40:43 -05:00
*)
2020-01-13 13:14:31 -05:00
print -u2 -PR " %F{red} ${ 0 } : Unknown action ${ 1 } %f " $'\n\n' ${ zusage }
2021-03-19 18:13:21 -04:00
return 2
2019-01-22 19:40:43 -05:00
; ;
esac
}
2019-12-01 16:00:47 -05:00
zimfw " ${ @ } "