File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
11
11
### Fixed
12
12
- geometry_git complaining when not in a work-tree
13
13
14
+ ### Removed
15
+ - GEOMETRY_GIT_SEPARATOR hidden feature, was the only function that didnt work like the others.
16
+ Now uses GEOMETRY_SEPARATOR like everything else.
17
+
14
18
## 2.0.5 - 2019-10-14
15
19
16
20
### Fixed
Original file line number Diff line number Diff line change @@ -87,13 +87,15 @@ geometry_git() {
87
87
&& ansi ${GEOMETRY_GIT_COLOR_BARE:=blue} ${GEOMETRY_GIT_SYMBOL_BARE:="⬢"} \
88
88
&& return
89
89
90
- local geometry_git_details && geometry_git_details=(
90
+ local git_info && git_info=(
91
+ $(geometry_git_symbol)
92
+ $(geometry_git_branch)
91
93
$(geometry_git_conflicts)
92
94
$(geometry_git_time)
93
95
$(geometry_git_stashes)
94
96
$(geometry_git_status)
95
97
)
96
98
97
- echo -n $(geometry_git_symbol) $(geometry_git_branch) $ {(ej.${GEOMETRY_GIT_SEPARATOR:-" :: " }.)geometry_git_details }
99
+ echo -n ${(ej.${GEOMETRY_SEPARATOR:- }.)git_info }
98
100
popd -q 2>/dev/null
99
101
}
You can’t perform that action at this time.
0 commit comments