File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 3
3
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ )
4
4
and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
5
5
6
+ ## 2.0.5 - 2019-10-14
7
+
8
+ ### Fixed
9
+ - Problem sourcing functions
10
+
6
11
## 2.0.4 - 2019-10-14
7
12
8
13
### Fixed
Original file line number Diff line number Diff line change 4
4
# pure: https://github.com/sindresorhus/pure
5
5
# mnml: https://github.com/subnixr/minimal
6
6
7
- typeset -gA GEOMETRY
7
+ typeset -gA GEOMETRY; GEOMETRY[ROOT]= ${0 : A : h}
8
8
9
9
(( $+ GEOMETRY_PROMPT)) || GEOMETRY_PROMPT=(geometry_echo geometry_status geometry_path)
10
10
(( $+ GEOMETRY_RPROMPT)) || GEOMETRY_RPROMPT=(geometry_exec_time geometry_git geometry_hg geometry_echo)
11
11
(( $+ GEOMETRY_INFO)) || GEOMETRY_INFO=(geometry_hostname geometry_jobs)
12
12
13
13
autoload -U add-zsh-hook
14
14
15
- function { local fun; for fun (" ${0 : A : h } " /functions/geometry_ * .zsh(N.) ) . $fun }
15
+ function { local fun; for fun (" ${GEOMETRY[ROOT] } " /functions/* ) . $fun }
16
16
17
17
(( $+ functions[ansi] )) || ansi () { (( $# - 2 )) || echo -n " %F{$1 }$2 %f" ; }
18
18
You can’t perform that action at this time.
0 commit comments