From dfa58acccc2c4d982942a53cbb61d0fa5a3955fe Mon Sep 17 00:00:00 2001 From: Jack Bennett Date: Wed, 18 Mar 2015 15:47:01 +0000 Subject: [PATCH] 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. --- vendor/profile.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendor/profile.ps1 b/vendor/profile.ps1 index b463776..a87a5d2 100644 --- a/vendor/profile.ps1 +++ b/vendor/profile.ps1 @@ -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 }