Revert new line from commit dc834cc28f

This matches how cmd looks in conemu for cmder and PS seems to add some
padding around command output so I really don't see what the extra new
line is doing.

Saving dat precious vertical space.
This commit is contained in:
Jack Bennett 2015-03-18 15:47:01 +00:00
parent 004761b32f
commit dfa58acccc

2
vendor/profile.ps1 vendored
View File

@ -17,7 +17,7 @@ Pop-Location
function global:prompt {
$realLASTEXITCODE = $LASTEXITCODE
$Host.UI.RawUI.ForegroundColor = "White"
Write-Host("`n" + $pwd.ProviderPath) -NoNewLine -ForegroundColor Green
Write-Host $pwd.ProviderPath -NoNewLine -ForegroundColor Green
if (Get-Module posh-git) {
Write-VcsStatus
}