Skip to content

Commit

Permalink
Revert "Fix line-wrapping problem (#47)"
Browse files Browse the repository at this point in the history
This reverts commit b4c4f47.
  • Loading branch information
lyze committed Sep 11, 2020
1 parent b4c4f47 commit ac04fcb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions git-prompt.sh
Expand Up @@ -210,10 +210,10 @@ __posh_git_echo () {
local BranchBehindAndAheadStatusSymbol=''
local BranchWarningStatusSymbol=''
if $EnableStatusSymbol; then
BranchIdenticalStatusSymbol=$' \[\xE2\x89\]\xA1' # Three horizontal lines
BranchAheadStatusSymbol=$' \[\xE2\x86\]\x91' # Up Arrow
BranchBehindStatusSymbol=$' \[\xE2\x86\]\x93' # Down Arrow
BranchBehindAndAheadStatusSymbol=$'\[\xE2\x86\]\x95' # Up and Down Arrow
BranchIdenticalStatusSymbol=$' \xE2\x89\xA1' # Three horizontal lines
BranchAheadStatusSymbol=$' \xE2\x86\x91' # Up Arrow
BranchBehindStatusSymbol=$' \xE2\x86\x93' # Down Arrow
BranchBehindAndAheadStatusSymbol=$'\xE2\x86\x95' # Up and Down Arrow
BranchWarningStatusSymbol=' ?'
fi

Expand Down

0 comments on commit ac04fcb

Please sign in to comment.