[Fix #170] Remove Git stash count leading spaces
This commit is contained in:
parent
0cd33ca694
commit
aa925d22b4
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue