[Fix #170] Remove Git stash count leading spaces

This commit is contained in:
Sorin Ionescu 2012-05-06 16:48:33 -04:00
parent 0cd33ca694
commit aa925d22b4
1 changed files with 1 additions and 1 deletions

View File

@ -268,7 +268,7 @@ function git-info {
# Format stashed.
if [[ -f "$(git-dir)/refs/stash" ]]; then
stashed="$(git stash list 2> /dev/null | wc -l)"
stashed="$(git stash list 2> /dev/null | wc -l | awk '{print $1}')"
zstyle -s ':omz:module:git' stashed 'stashed_format'
zformat -f stashed_formatted "$stashed_format" "S:$stashed"
fi