AmrEldib / cmder-powershell-powerline-prompt

Custom PowerShell prompt for Cmder on Windows
97 stars 15 forks source link

Fix weird duplicating space issue #5

Open AridTag opened 6 years ago

AridTag commented 6 years ago

I was getting a strange duplicating spaces issue seen here image

After this change to using [string]::Format it looks like this image

AridTag commented 6 years ago

I just learned that this can be fixed by instead replacing your original strings given to Write-Host with something like this (" $($branchSymbol) $($status.Branch)") instead of [string]::Format

So I added another commit that changes to that. It's the same style that posh-git uses