Remove 'prompt' from the Git position zstyle

This commit is contained in:
Sorin Ionescu 2012-05-21 15:58:05 -04:00
parent be2c8decdb
commit d3cad0721b
1 changed files with 2 additions and 2 deletions

View File

@ -38,7 +38,7 @@
# zstyle ':omz:module:git' modified 'modified:%m'
#
# # %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.
# zstyle ':omz:moduleit' remote 'remote:%R'
@ -327,7 +327,7 @@ function git-info {
# Format position.
position="$(git describe --contains --all HEAD 2> /dev/null)"
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"
fi
fi