File tree 3 files changed +10
-6
lines changed
3 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 1
- v2.2.1
1
+ develop
Original file line number Diff line number Diff line change @@ -1360,7 +1360,7 @@ antigen-use () {
1360
1360
fi
1361
1361
}
1362
1362
antigen-version () {
1363
- local version=" v2.2.1 "
1363
+ local version=" develop "
1364
1364
local extensions revision=" "
1365
1365
if [[ -d $_ANTIGEN_INSTALL_DIR /.git ]]; then
1366
1366
revision=" ($( git --git-dir=$_ANTIGEN_INSTALL_DIR /.git rev-parse --short ' @' ) )"
@@ -1782,15 +1782,17 @@ typeset -g _ZCACHE_CAPTURE_PREFIX
1782
1782
cat > $ANTIGEN_CACHE << EOC
1783
1783
#-- START ZCACHE GENERATED FILE
1784
1784
#-- GENERATED: $( date)
1785
- #-- ANTIGEN v2.2.1
1785
+ #-- ANTIGEN develop
1786
1786
$( functions -- _antigen)
1787
1787
antigen () {
1788
1788
local MATCH MBEGIN MEND
1789
1789
[[ "\$ ZSH_EVAL_CONTEXT" =~ "toplevel:*" || "\$ ZSH_EVAL_CONTEXT" =~ "cmdarg:*" ]] && source "$_ANTIGEN_INSTALL_DIR /antigen.zsh" && eval antigen \$ @;
1790
1790
return 0;
1791
1791
}
1792
+ $( export -p _PATH _fpath)
1792
1793
typeset -gaU fpath path
1793
- fpath+=(${_fpath[@]} ) path+=(${_PATH[@]} )
1794
+ fpath+=(\$ _fpath) path+=(\$ _PATH)
1795
+ unset _fpath _PATH
1794
1796
_antigen_compinit () {
1795
1797
autoload -Uz compinit; compinit -d "$ANTIGEN_COMPDUMP "; compdef _antigen antigen
1796
1798
add-zsh-hook -D precmd _antigen_compinit
@@ -1806,7 +1808,7 @@ ${(j::)_sources}
1806
1808
#--- BUNDLES END
1807
1809
typeset -gaU _ANTIGEN_BUNDLE_RECORD; _ANTIGEN_BUNDLE_RECORD=($( print ${(qq)_ANTIGEN_BUNDLE_RECORD} ) )
1808
1810
typeset -g _ANTIGEN_CACHE_LOADED; _ANTIGEN_CACHE_LOADED=true
1809
- typeset -g ANTIGEN_CACHE_VERSION; ANTIGEN_CACHE_VERSION='v2.2.1 '
1811
+ typeset -g ANTIGEN_CACHE_VERSION; ANTIGEN_CACHE_VERSION='develop '
1810
1812
1811
1813
#-- END ZCACHE GENERATED FILE
1812
1814
EOC
Original file line number Diff line number Diff line change @@ -41,8 +41,10 @@ antigen () {
41
41
[[ "\$ ZSH_EVAL_CONTEXT" =~ "toplevel:*" || "\$ ZSH_EVAL_CONTEXT" =~ "cmdarg:*" ]] && source "$_ANTIGEN_INSTALL_DIR /antigen.zsh" && eval antigen \$ @;
42
42
return 0;
43
43
}
44
+ $( export -p _PATH _fpath)
44
45
typeset -gaU fpath path
45
- fpath+=(${_fpath[@]} ) path+=(${_PATH[@]} )
46
+ fpath+=(\$ _fpath) path+=(\$ _PATH)
47
+ unset _fpath _PATH
46
48
_antigen_compinit () {
47
49
autoload -Uz compinit; compinit -d "$ANTIGEN_COMPDUMP "; compdef _antigen antigen
48
50
add-zsh-hook -D precmd _antigen_compinit
You can’t perform that action at this time.
0 commit comments