Remove 'prompt' from the Git position zstyle
This commit is contained in:
parent
be2c8decdb
commit
d3cad0721b
|
@ -38,7 +38,7 @@
|
||||||
# zstyle ':omz:module:git' modified 'modified:%m'
|
# zstyle ':omz:module:git' modified 'modified:%m'
|
||||||
#
|
#
|
||||||
# # %p - HEAD position in relation to the nearest branch, remote, tag.
|
# # %p - HEAD position in relation to the nearest branch, remote, tag.
|
||||||
# zstyle ':omz:module:git:prompt' position 'position:%p'
|
# zstyle ':omz:module:git' position 'position:%p'
|
||||||
#
|
#
|
||||||
# # %R - Remote name.
|
# # %R - Remote name.
|
||||||
# zstyle ':omz:moduleit' remote 'remote:%R'
|
# zstyle ':omz:moduleit' remote 'remote:%R'
|
||||||
|
@ -327,7 +327,7 @@ function git-info {
|
||||||
# Format position.
|
# Format position.
|
||||||
position="$(git describe --contains --all HEAD 2> /dev/null)"
|
position="$(git describe --contains --all HEAD 2> /dev/null)"
|
||||||
if [[ -n "$position" ]]; then
|
if [[ -n "$position" ]]; then
|
||||||
zstyle -s ':omz:module:git:prompt' position 'position_format'
|
zstyle -s ':omz:module:git' position 'position_format'
|
||||||
zformat -f position_formatted "$position_format" "p:$position"
|
zformat -f position_formatted "$position_format" "p:$position"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue